You are here

public function DefaultExceptionHtmlSubscriber::__construct in Drupal 9

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

Constructs a new DefaultExceptionHtmlSubscriber.

Parameters

\Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel: The HTTP kernel.

\Psr\Log\LoggerInterface $logger: The logger service.

\Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination: The redirect destination service.

\Symfony\Component\Routing\Matcher\UrlMatcherInterface $access_unaware_router: A router implementation which does not check access.

1 call to DefaultExceptionHtmlSubscriber::__construct()
CustomPageExceptionHtmlSubscriber::__construct in core/lib/Drupal/Core/EventSubscriber/CustomPageExceptionHtmlSubscriber.php
Constructs a new CustomPageExceptionHtmlSubscriber.
1 method overrides DefaultExceptionHtmlSubscriber::__construct()
CustomPageExceptionHtmlSubscriber::__construct in core/lib/Drupal/Core/EventSubscriber/CustomPageExceptionHtmlSubscriber.php
Constructs a new CustomPageExceptionHtmlSubscriber.

File

core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php, line 60

Class

DefaultExceptionHtmlSubscriber
Exception subscriber for handling core default HTML error pages.

Namespace

Drupal\Core\EventSubscriber

Code

public function __construct(HttpKernelInterface $http_kernel, LoggerInterface $logger, RedirectDestinationInterface $redirect_destination, UrlMatcherInterface $access_unaware_router) {
  $this->httpKernel = $http_kernel;
  $this->logger = $logger;
  $this->redirectDestination = $redirect_destination;
  $this->accessUnawareRouter = $access_unaware_router;
}