Utf8ActionControllers.php 331 B

12345678910111213141516171819
  1. <?php
  2. namespace Symfony\Component\Routing\Tests\Fixtures\AttributeFixtures;
  3. use Symfony\Component\Routing\Annotation\Route;
  4. #[Route('/test', utf8: true)]
  5. class Utf8ActionControllers
  6. {
  7. #[Route(name: 'one')]
  8. public function one()
  9. {
  10. }
  11. #[Route(name: 'two', utf8: false)]
  12. public function two()
  13. {
  14. }
  15. }