You are here

public function PathMatcher::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Path/PathMatcher.php \Drupal\Core\Path\PathMatcher::__construct()

Creates a new PathMatcher.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.

File

core/lib/Drupal/Core/Path/PathMatcher.php, line 62
Contains \Drupal\Core\Path\PathMatcher.

Class

PathMatcher
Provides a path matcher.

Namespace

Drupal\Core\Path

Code

public function __construct(ConfigFactoryInterface $config_factory, RouteMatchInterface $route_match) {
  $this->configFactory = $config_factory;
  $this->routeMatch = $route_match;
}