protected function DrupalKernel::getHttpKernel in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 1263 - Contains \Drupal\Core\DrupalKernel.
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\CoreCode
protected function getHttpKernel() {
return $this->container
->get('http_kernel');
}