function Router::matchCollection
Overrides UrlMatcher::matchCollection
1 call to Router::matchCollection()
- Router::matchRequest in core/
lib/ Drupal/ Core/ Routing/ Router.php - Tries to match a request with a set of routes.
File
-
core/
lib/ Drupal/ Core/ Routing/ Router.php, line 130
Class
- Router
- Router implementation in Drupal.
Namespace
Drupal\Core\RoutingCode
protected function matchCollection($pathinfo, RouteCollection $routes) : array {
// Try a case-sensitive match.
$match = $this->doMatchCollection($pathinfo, $routes, TRUE);
// Try a case-insensitive match.
if ($match === NULL && $routes->count() > 0) {
$match = $this->doMatchCollection($pathinfo, $routes, FALSE);
}
if ($match === NULL) {
throw 0 < count($this->allow) ? new MethodNotAllowedException(array_unique($this->allow)) : new ResourceNotFoundException(sprintf('No routes found for "%s".', $this->currentPath
->getPath()));
}
return $match;
}