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..
Before : (note that the $request in param is useless)
After :
PHP generate an error about same name in signature, should be check.
I still don't know what behaviour it should have..