You are here

protected function Router::matchCollection in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/Router.php \Drupal\Core\Routing\Router::matchCollection()

Tries to match a URL with a set of routes.

Parameters

string $pathinfo: The path info to be parsed

\Symfony\Component\Routing\RouteCollection $routes: The set of routes.

Return value

array|null An array of parameters. NULL when there is no match.

1 call to Router::matchCollection()
Router::matchRequest in core/lib/Drupal/Core/Routing/Router.php

File

core/lib/Drupal/Core/Routing/Router.php, line 149

Class

Router
Router implementation in Drupal.

Namespace

Drupal\Core\Routing

Code

protected function matchCollection($pathinfo, RouteCollection $routes) {

  // 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);
  }
  return $match;
}