PrefixedActionLocalizedRouteController.php 328 B

123456789101112131415161718
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AnnotationFixtures;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. /**
  5. * @Route("/prefix")
  6. */
  7. class PrefixedActionLocalizedRouteController
  8. {
  9. /**
  10. * @Route(path={"en": "/path", "nl": "/pad"}, name="action")
  11. */
  12. public function action()
  13. {
  14. }
  15. }