We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
see http://symfony.com/blog/new-in-symfony-3-4-prefix-all-controller-route-names / symfony/symfony#24031
/** * @Route("/blog", name="blog_") */ class BlogController extends Controller { /** * @Route("/", defaults={"page": "1"}, name="index") * @Route("/page/{page}", name="index_paginated") */ public function indexAction($page, $_format) { ... } /** * @Route("/posts/{slug}", name="post") */ public function showAction(Post $post) { ... } }
The text was updated successfully, but these errors were encountered:
support Symfony 3.4 controller route names prefix in annotations #1017
b496a8c
5a336a9
e2dafb5
420c7cf
No branches or pull requests
see http://symfony.com/blog/new-in-symfony-3-4-prefix-all-controller-route-names / symfony/symfony#24031
The text was updated successfully, but these errors were encountered: