public function PathMatcher::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\PathCode
public function __construct(ConfigFactoryInterface $config_factory, RouteMatchInterface $route_match) {
$this->configFactory = $config_factory;
$this->routeMatch = $route_match;
}