Documentation

ViewEvent extends RequestEvent
in package

Allows to create a response for the return value of a controller.

Call setResponse() to set the response that will be returned for the current request. The propagation of this event is stopped as soon as a response is set.

Tags
author

Bernhard Schussek bschussek@gmail.com

Table of Contents

$controllerResult  : mixed
The return value of the controller.
$kernel  : mixed
$propagationStopped  : mixed
$request  : mixed
$requestType  : mixed
$response  : mixed
__construct()  : mixed
getControllerResult()  : mixed
Returns the return value of the controller.
getKernel()  : HttpKernelInterface
Returns the kernel in which this event was thrown.
getRequest()  : Request
Returns the request the kernel is currently processing.
getRequestType()  : int
Returns the request type the kernel is currently processing.
getResponse()  : Response|null
Returns the response object.
hasResponse()  : bool
Returns whether a response was set.
isMainRequest()  : bool
Checks if this is the main request.
isMasterRequest()  : bool
Checks if this is a master request.
isPropagationStopped()  : bool
Is propagation stopped?
setControllerResult()  : void
Assigns the return value of the controller.
setResponse()  : mixed
Sets a response and stops event propagation.
stopPropagation()  : void
Stops the propagation of the event to further event listeners.

Properties

$controllerResult

The return value of the controller.

private mixed $controllerResult

$propagationStopped

private mixed $propagationStopped = false

Methods

getControllerResult()

Returns the return value of the controller.

public getControllerResult() : mixed
Return values
mixed

getRequest()

Returns the request the kernel is currently processing.

public getRequest() : Request
Return values
Request

getRequestType()

Returns the request type the kernel is currently processing.

public getRequestType() : int
Return values
int

One of HttpKernelInterface::MAIN_REQUEST and HttpKernelInterface::SUB_REQUEST

hasResponse()

Returns whether a response was set.

public hasResponse() : bool
Return values
bool

isMainRequest()

Checks if this is the main request.

public isMainRequest() : bool
Return values
bool

isMasterRequest()

Checks if this is a master request.

public isMasterRequest() : bool
Tags
deprecated

since symfony/http-kernel 5.3, use isMainRequest() instead

Return values
bool

isPropagationStopped()

Is propagation stopped?

public isPropagationStopped() : bool
Return values
bool

setControllerResult()

Assigns the return value of the controller.

public setControllerResult(mixed $controllerResult) : void
Parameters
$controllerResult : mixed

The controller return value

Return values
void

setResponse()

Sets a response and stops event propagation.

public setResponse(Response $response) : mixed
Parameters
$response : Response
Return values
mixed

stopPropagation()

Stops the propagation of the event to further event listeners.

public stopPropagation() : void

If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().

Return values
void

Search results