You are here

public function KernelPreHandle::__construct in Drupal 9

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

Constructs a new KernelPreHandle instance.

Parameters

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

\Drupal\Core\DrupalKernelInterface $drupal_kernel: The main Drupal kernel.

File

core/lib/Drupal/Core/StackMiddleware/KernelPreHandle.php, line 36

Class

KernelPreHandle
Prepares the environment after page caching ran.

Namespace

Drupal\Core\StackMiddleware

Code

public function __construct(HttpKernelInterface $http_kernel, DrupalKernelInterface $drupal_kernel) {
  $this->httpKernel = $http_kernel;
  $this->drupalKernel = $drupal_kernel;
}