You are here

public function DefaultExceptionHtmlSubscriber::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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.

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 57
Contains \Drupal\Core\EventSubscriber\DefaultExceptionHtmlSubscriber.

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) {
  $this->httpKernel = $http_kernel;
  $this->logger = $logger;
  $this->redirectDestination = $redirect_destination;
}