You are here

protected function DrupalKernel::getHttpKernel in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/DrupalKernel.php \Drupal\Core\DrupalKernel::getHttpKernel()

Gets a http kernel from the container

Return value

\Symfony\Component\HttpKernel\HttpKernelInterface

1 call to DrupalKernel::getHttpKernel()
DrupalKernel::terminate in core/lib/Drupal/Core/DrupalKernel.php
Terminates a request/response cycle.

File

core/lib/Drupal/Core/DrupalKernel.php, line 1400

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

protected function getHttpKernel() {
  return $this->container
    ->get('http_kernel');
}