FinishRequestEvent
class FinishRequestEvent extends KernelEvent
Triggered whenever a request is fully processed.
Methods
Stores the EventDispatcher that dispatches this Event
Details
in Event at line line 55
bool
isPropagationStopped()
Returns whether further event listeners should be triggered.
in Event at line line 69
stopPropagation()
Stops the propagation of the event to further event listeners.
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().
in Event at line line 83
setDispatcher(EventDispatcherInterface $dispatcher)
deprecated
deprecated
Stores the EventDispatcher that dispatches this Event
in Event at line line 97
EventDispatcherInterface
getDispatcher()
deprecated
deprecated
Returns the EventDispatcher that dispatches this Event
in Event at line line 111
string
getName()
deprecated
deprecated
Gets the event's name.
in Event at line line 125
setName(string $name)
deprecated
deprecated
Sets the event's name property.
in KernelEvent at line line 46
__construct(HttpKernelInterface $kernel, Request $request, $requestType)
in KernelEvent at line line 60
HttpKernelInterface
getKernel()
Returns the kernel in which this event was thrown
in KernelEvent at line line 72
Request
getRequest()
Returns the request the kernel is currently processing
in KernelEvent at line line 85
int
getRequestType()
Returns the request type the kernel is currently processing
in KernelEvent at line line 97
bool
isMasterRequest()
Checks if this is a master request.