-
-
Notifications
You must be signed in to change notification settings - Fork 742
Closed
Labels
Description
Before : (note that the $request in param is useless)
public function fooAction(Request $request) {
$oRequest = $this->getRequest();
}After :
public function fooAction(Request $request, Symfony\Component\HttpFoundation\Request $request) {
$oRequest = $request;
}PHP generate an error about same name in signature, should be check.
I still don't know what behaviour it should have..
Reactions are currently unavailable