"=null" on method parameter is not present in EnhancedProxy generated class · Issue #7 · schmittjoh/cg-library · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why the hell is it invalid? This is perfectly correct example of code.
<
474E
a rel="nofollow" class="btn btn-primary" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"signed out comment","repository_id":2381985,"auth_type":"SIGN_UP","originating_url":"https://github.com/schmittjoh/cg-library/issues/7","user_id":null}}" data-hydro-click-hmac="e82c36b3699257b02862b79d2ad3ab2863f4834912c7dbcc76c7d5e6855766f4" href="/join?source=comment-repo">Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I created a Symfony 2.1 Controller Action with the following method signature:
public function modifierAction(Request $request, $id, Boutique $boutique = null , $categorieId)
but in the generated EnhancedProxy through CG Library, it is translated in
public function modifierAction(\Symfony\Component\HttpFoundation\Request $request, $id, \MyBundle\Boutique $boutique, $categorieId)
so the "= null" is lost.
would it be possible to get the "= null" in the EnhancedProxy class so the method signature are really the identical ?
Best regards,
Christophe
The text was updated successfully, but these errors were encountered: