InvokableLocalizedController.php 280 B

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