123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- use Symfony\Component\Routing\Matcher\Dumper\PhpMatcherTrait;
- use Symfony\Component\Routing\RequestContext;
- /**
- * This class has been auto-generated
- * by the Symfony Routing Component.
- */
- class ProjectUrlMatcher extends Symfony\Component\Routing\Matcher\UrlMatcher
- {
- use PhpMatcherTrait;
- public function __construct(RequestContext $context)
- {
- $this->context = $context;
- $this->staticRoutes = [
- '/trailing/simple/no-methods' => [[['_route' => 'simple_trailing_slash_no_methods'], null, null, null, true, false, null]],
- '/trailing/simple/get-method' => [[['_route' => 'simple_trailing_slash_GET_method'], null, ['GET' => 0], null, true, false, null]],
- '/trailing/simple/head-method' => [[['_route' => 'simple_trailing_slash_HEAD_method'], null, ['HEAD' => 0], null, true, false, null]],
- '/trailing/simple/post-method' => [[['_route' => 'simple_trailing_slash_POST_method'], null, ['POST' => 0], null, true, false, null]],
- '/not-trailing/simple/no-methods' => [[['_route' => 'simple_not_trailing_slash_no_methods'], null, null, null, false, false, null]],
- '/not-trailing/simple/get-method' => [[['_route' => 'simple_not_trailing_slash_GET_method'], null, ['GET' => 0], null, false, false, null]],
- '/not-trailing/simple/head-method' => [[['_route' => 'simple_not_trailing_slash_HEAD_method'], null, ['HEAD' => 0], null, false, false, null]],
- '/not-trailing/simple/post-method' => [[['_route' => 'simple_not_trailing_slash_POST_method'], null, ['POST' => 0], null, false, false, null]],
- ];
- $this->regexpList = [
- 0 => '{^(?'
- .'|/trailing/regex/(?'
- .'|no\\-methods/([^/]++)(*:46)'
- .'|get\\-method/([^/]++)(*:73)'
- .'|head\\-method/([^/]++)(*:101)'
- .'|post\\-method/([^/]++)(*:130)'
- .')'
- .'|/not\\-trailing/regex/(?'
- .'|no\\-methods/([^/]++)(*:183)'
- .'|get\\-method/([^/]++)(*:211)'
- .'|head\\-method/([^/]++)(*:240)'
- .'|post\\-method/([^/]++)(*:269)'
- .')'
- .')/?$}sD',
- ];
- $this->dynamicRoutes = [
- 46 => [[['_route' => 'regex_trailing_slash_no_methods'], ['param'], null, null, true, true, null]],
- 73 => [[['_route' => 'regex_trailing_slash_GET_method'], ['param'], ['GET' => 0], null, true, true, null]],
- 101 => [[['_route' => 'regex_trailing_slash_HEAD_method'], ['param'], ['HEAD' => 0], null, true, true, null]],
- 130 => [[['_route' => 'regex_trailing_slash_POST_method'], ['param'], ['POST' => 0], null, true, true, null]],
- 183 => [[['_route' => 'regex_not_trailing_slash_no_methods'], ['param'], null, null, false, true, null]],
- 211 => [[['_route' => 'regex_not_trailing_slash_GET_method'], ['param'], ['GET' => 0], null, false, true, null]],
- 240 => [[['_route' => 'regex_not_trailing_slash_HEAD_method'], ['param'], ['HEAD' => 0], null, false, true, null]],
- 269 => [[['_route' => 'regex_not_trailing_slash_POST_method'], ['param'], ['POST' => 0], null, false, true, null]],
- ];
- }
- }
|