You are here

protected function Kernel::getHttpKernel in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::getHttpKernel()

Gets a HTTP kernel from the container.

Return value

HttpKernel

1 call to Kernel::getHttpKernel()
Kernel::terminate in vendor/symfony/http-kernel/Kernel.php
Terminates a request/response cycle.

File

vendor/symfony/http-kernel/Kernel.php, line 192

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

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