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
This PR was merged into the master branch.
Discussion
----------
Fix web/front.php
## $controller always return false.
$controller = $controllerResolver->getController($request);
$arguments = $argumentResolver->getArguments($request, $controller);
The two lines before the `try ... catch` should run after:
$request->attributes->add($matcher->match($request->getPathInfo()));
The three lines already exist inside the `try ... catch` which works fine and properly after removed those two lines.
([http://symfony.com/doc/master/create_framework/http_kernel_controller_resolver.html](http://symfony.com/doc/master/create_framework/http_kernel_controller_resolver.html))
Commits
-------
86bb5ac Fix web/front.php
0 commit comments