public function NestedMatcher::setRouteProvider

Sets the route provider for the matching plan.

Parameters

RouteProviderInterface $provider A route provider. It is responsible for its own configuration.:

Return value

NestedMatcher this object to have a fluent interface

File

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

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 setRouteProvider(RouteProviderInterface $provider) {
  $this->routeProvider = $provider;
  return $this;
}