url_matcher8.php 996 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. use Symfony\Component\Routing\Matcher\Dumper\PhpMatcherTrait;
  3. use Symfony\Component\Routing\RequestContext;
  4. /**
  5. * This class has been auto-generated
  6. * by the Symfony Routing Component.
  7. */
  8. class ProjectUrlMatcher extends Symfony\Component\Routing\Matcher\UrlMatcher
  9. {
  10. use PhpMatcherTrait;
  11. public function __construct(RequestContext $context)
  12. {
  13. $this->context = $context;
  14. $this->regexpList = [
  15. 0 => '{^(?'
  16. .'|/(a)(*:11)'
  17. .')/?$}sD',
  18. 11 => '{^(?'
  19. .'|/(.)(*:22)'
  20. .')/?$}sDu',
  21. 22 => '{^(?'
  22. .'|/(.)(*:33)'
  23. .')/?$}sD',
  24. ];
  25. $this->dynamicRoutes = [
  26. 11 => [[['_route' => 'a'], ['a'], null, null, false, true, null]],
  27. 22 => [[['_route' => 'b'], ['a'], null, null, false, true, null]],
  28. 33 => [[['_route' => 'c'], ['a'], null, null, false, true, null]],
  29. ];
  30. }
  31. }