PrefixedActionLocalizedRouteController.php 307 B

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