Symfony2 API
Interface

Symfony\Component\HttpKernel\HttpKernelInterface

interface HttpKernelInterface

HttpKernelInterface handles a Request to convert it to a Response.

Constants

MASTER_REQUEST

SUB_REQUEST

Methods

Response handle(Request $request, integer $type = self::MASTER_REQUEST, Boolean $catch = true)

Handles a Request to convert it to a Response.

Details

at line 46
public Response handle(Request $request, integer $type = self::MASTER_REQUEST, Boolean $catch = true)

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

Exceptions

Exception When an Exception occurs during processing