PrefixedActionPathController.php 336 B

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