HttpKernelInterface

interface HttpKernelInterface

HttpKernelInterface handles a Request to convert it to a Response.

Constants

MASTER_REQUEST
SUB_REQUEST

Methods

Response handle(Request $request, int $type = self::MASTER_REQUEST, bool $catch = true)

Handles a Request to convert it to a Response.

Details

Response handle(Request $request, int $type = self::MASTER_REQUEST, bool $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
int $type The type of the request (one of HttpKernelInterface::MASTERREQUEST or HttpKernelInterface::SUBREQUEST)
bool $catch Whether to catch exceptions or not

Return Value

Response A Response instance

Exceptions

Exception When an Exception occurs during processing
doc_Symfony
2016-10-28 06:20:48
Comments
Leave a Comment

Please login to continue.