public function HttpKernelInterface::handle

Handles a Request to convert it to a Response.

When $catch is true, the implementation must catch all exceptions and do its best to convert them to a Response instance.

@api

Parameters

Request $request A Request instance:

integer $type The type of the request: (one of HttpKernelInterface::MASTER_REQUEST or HttpKernelInterface::SUB_REQUEST)

Boolean $catch Whether to catch exceptions or not:

Return value

Response A Response instance

Throws

\Exception When an Exception occurs during processing

5 methods override HttpKernelInterface::handle()
HttpCache::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpCache/HttpCache.php
@api
HttpKernel::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpKernel.php
@api
Kernel::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
@api
TestKernel::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/EventListener/ExceptionListenerTest.php
Handles a Request to convert it to a Response.
TestKernelThatThrowsException::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/EventListener/ExceptionListenerTest.php
Handles a Request to convert it to a Response.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpKernelInterface.php, line 46

Class

HttpKernelInterface
HttpKernelInterface handles a Request to convert it to a Response.

Namespace

Symfony\Component\HttpKernel

Code

public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);