InvokableLocalizedController.php 276 B

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