public function HttpKernel::handle

Same name in this branch

@api

Overrides HttpKernel::handle

2 calls to HttpKernel::handle()
HttpKernel::forward in drupal/core/lib/Drupal/Core/HttpKernel.php
Forwards the request to another controller.
HttpKernel::render in drupal/core/lib/Drupal/Core/HttpKernel.php
Renders a Controller and returns the Response content.

File

drupal/core/lib/Drupal/Core/HttpKernel.php, line 44
Definition of Drupal\Core\HttpKernel.

Class

HttpKernel
This HttpKernel is used to manage scope changes of the DI container.

Namespace

Drupal\Core

Code

public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) {
  $request->headers
    ->set('X-Php-Ob-Level', ob_get_level());
  $this->container
    ->enterScope('request');
  $this->container
    ->set('request', $request, 'request');
  try {
    $response = parent::handle($request, $type, $catch);
  } catch (\Exception $e) {
    $this->container
      ->leaveScope('request');
    throw $e;
  }
  $this->container
    ->leaveScope('request');
  return $response;
}