public DefaultExceptionHtmlSubscriber::__construct(HttpKernelInterface $http_kernel, LoggerInterface $logger, RedirectDestinationInterface $redirect_destination, UrlMatcherInterface$access_unaware_router)
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.
File
- core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php, line 59
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; }
Please login to continue.