public function AccessAwareRouter::match in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Routing/AccessAwareRouter.php \Drupal\Core\Routing\AccessAwareRouter::match()
Throws
\Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException Thrown when access checking failed.
Overrides AccessAwareRouterInterface::match
File
- core/
lib/ Drupal/ Core/ Routing/ AccessAwareRouter.php, line 149
Class
- AccessAwareRouter
- A router class for Drupal with access check and upcasting.
Namespace
Drupal\Core\RoutingCode
public function match($pathinfo) {
return $this
->matchRequest(Request::create($pathinfo));
}