ExplicitLocalizedActionPathController.php 298 B

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