ContainerAwareHttpKernel deprecated

class ContainerAwareHttpKernel extends HttpKernel

deprecated

since version 2.7, to be removed in 3.0.

Adds a managed request scope.

Methods

__construct(EventDispatcherInterface $dispatcher, ContainerInterface $container, ControllerResolverInterface $controllerResolver, RequestStack $requestStack = null, bool $triggerDeprecation = true)

Constructor.

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

Handles a Request to convert it to a Response.

terminate(Request $request, Response $response)

Terminates a request/response cycle.

from HttpKernel
terminateWithException(Exception $exception) from HttpKernel

Details

__construct(EventDispatcherInterface $dispatcher, ContainerInterface $container, ControllerResolverInterface $controllerResolver, RequestStack $requestStack = null, bool $triggerDeprecation = true)

Constructor.

Parameters

EventDispatcherInterface $dispatcher An EventDispatcherInterface instance
ContainerInterface $container A ContainerInterface instance
ControllerResolverInterface $controllerResolver A ControllerResolverInterface instance
RequestStack $requestStack A stack for master/sub requests
bool $triggerDeprecation Whether or not to trigger the deprecation warning for the ContainerAwareHttpKernel

Response handle(Request $request, int $type = HttpKernelInterface::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

terminate(Request $request, Response $response)

Terminates a request/response cycle.

Should be called after sending the response and before shutting down the kernel.

Parameters

Request $request A Request instance
Response $response A Response instance

terminateWithException(Exception $exception)

Parameters

Exception $exception

Exceptions

LogicException If the request stack is empty