public function NestedMatcher::getRouteFilters

Sorts the filters and flattens them.

Return value

RouteFilterInterface[] the filters ordered by priority

1 call to NestedMatcher::getRouteFilters()
NestedMatcher::matchRequest in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/NestedMatcher/NestedMatcher.php
Tries to match a request with a set of routes.

File

drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/NestedMatcher/NestedMatcher.php, line 141

Class

NestedMatcher
A more flexible approach to matching. The route collection to match against can be dynamically determined based on the request and users can inject their own filters or use a custom final matching strategy.

Namespace

Symfony\Cmf\Component\Routing\NestedMatcher

Code

public function getRouteFilters() {
  if (empty($this->sortedFilters)) {
    $this->sortedFilters = $this
      ->sortFilters();
  }
  return $this->sortedFilters;
}