12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- use Symfony\Component\Routing\Exception\MethodNotAllowedException;
- use Symfony\Component\Routing\Exception\ResourceNotFoundException;
- use Symfony\Component\Routing\RequestContext;
- /**
- * This class has been auto-generated
- * by the Symfony Routing Component.
- */
- class ProjectUrlMatcher extends Symfony\Component\Routing\Matcher\UrlMatcher
- {
- public function __construct(RequestContext $context)
- {
- $this->context = $context;
- }
- public function match($rawPathinfo)
- {
- $allow = [];
- $pathinfo = rawurldecode($rawPathinfo);
- $trimmedPathinfo = rtrim($pathinfo, '/');
- $context = $this->context;
- $request = $this->request ?: $this->createRequest($pathinfo);
- $requestMethod = $canonicalMethod = $context->getMethod();
- if ('HEAD' === $requestMethod) {
- $canonicalMethod = 'GET';
- }
- if (0 === strpos($pathinfo, '/rootprefix')) {
- // static
- if ('/rootprefix/test' === $pathinfo) {
- return ['_route' => 'static'];
- }
- // dynamic
- if (preg_match('#^/rootprefix/(?P<var>[^/]++)$#sD', $pathinfo, $matches)) {
- return $this->mergeDefaults(array_replace($matches, ['_route' => 'dynamic']), array ());
- }
- }
- // with-condition
- if ('/with-condition' === $pathinfo && ($context->getMethod() == "GET")) {
- return ['_route' => 'with-condition'];
- }
- if ('/' === $pathinfo && !$allow) {
- throw new Symfony\Component\Routing\Exception\NoConfigurationException();
- }
- throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException();
- }
- }
|