PrefixedActionPathController.php 324 B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AttributeFixtures;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. #[Route(path: '/prefix', host: 'frankdejonge.nl', condition: 'lol=fun')]
  5. class PrefixedActionPathController
  6. {
  7. #[Route(path: '/path', name: 'action')]
  8. public function action()
  9. {
  10. }
  11. }