url_matcher13.php 963 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->matchHost = true;
  15. $this->regexpList = [
  16. 0 => '{^(?'
  17. .'|(?i:([^\\.]++)\\.exampple\\.com)\\.(?'
  18. .'|/abc([^/]++)(?'
  19. .'|(*:56)'
  20. .')'
  21. .')'
  22. .')/?$}sD',
  23. ];
  24. $this->dynamicRoutes = [
  25. 56 => [
  26. [['_route' => 'r1'], ['foo', 'foo'], null, null, false, true, null],
  27. [['_route' => 'r2'], ['foo', 'foo'], null, null, false, true, null],
  28. ],
  29. ];
  30. }
  31. }