public function PathMatcher::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Path/PathMatcher.php \Drupal\Core\Path\PathMatcher::__construct()
- 9 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 57
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;
}