You are here

public function HttpKernelInterface::handle in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/HttpKernelInterface.php \Symfony\Component\HttpKernel\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.

Parameters

Request $request A Request instance:

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

bool $catch Whether to catch exceptions or not:

Return value

Response A Response instance

Throws

\Exception When an Exception occurs during processing

20 methods override HttpKernelInterface::handle()
AcceptHeaderMiddleware::handle in core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
Handles a Request to convert it to a Response.
Append::handle in vendor/stack/builder/tests/functional/SilexApplicationTest.php
Handles a Request to convert it to a Response.
Append::handle in vendor/stack/builder/tests/unit/Stack/BuilderTest.php
Handles a Request to convert it to a Response.
BanMiddleware::handle in core/modules/ban/src/BanMiddleware.php
Handles a Request to convert it to a Response.
DrupalKernel::handle in core/lib/Drupal/Core/DrupalKernel.php
Handles a Request to convert it to a Response.

... See full list

File

vendor/symfony/http-kernel/HttpKernelInterface.php, line 42

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);