// The following parameters are what Symfony uses in
// \Symfony\Component\Routing\Matcher\UrlMatcher::matchCollection().
// Set the static prefix to an empty string since it is redundant to
// the matching in \Drupal\Core\Routing\RouteProvider::getRoutesByPath()
// and by skipping it we more easily make the routing case-insensitive.
'',
$symfony_compiled->
getRegex(),
$symfony_compiled->
getTokens(),
$symfony_compiled->
getPathVariables(),
$symfony_compiled->
getHostRegex(),
$symfony_compiled->
getHostTokens(),
$symfony_compiled->
getHostVariables(),
$symfony_compiled->
getVariables() );
} /**
* Returns the pattern outline.
*
* The pattern outline is the path pattern but normalized so that all
* placeholders are the string '%'.
*
* @param string $path
* The path for which we want the normalized outline.
*
* @return string
* The path pattern outline.
*/