class KernelEvent extends Event
Base class for events thrown in the HttpKernel component
Methods
| Boolean |
isPropagationStopped()
Returns whether further event listeners should be triggered. |
from Event |
|
stopPropagation()
Stops the propagation of the event to further event listeners. |
from Event | |
|
setDispatcher(EventDispatcherInterface $dispatcher)
Stores the EventDispatcher that dispatches this Event |
from Event | |
| EventDispatcherInterface |
getDispatcher()
Returns the EventDispatcher that dispatches this Event |
from Event |
| string |
getName()
Gets the event's name. |
from Event |
|
setName(string $name)
Sets the event's name property. |
from Event | |
| __construct(HttpKernelInterface $kernel, Request $request, $requestType) | ||
| HttpKernelInterface |
getKernel()
Returns the kernel in which this event was thrown |
|
| Request |
getRequest()
Returns the request the kernel is currently processing |
|
| integer |
getRequestType()
Returns the request type the kernel is currently processing |
Details
in Event at line 55
public Boolean
isPropagationStopped()
Returns whether further event listeners should be triggered.
in Event at line 69
public
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 81
public
setDispatcher(EventDispatcherInterface $dispatcher)
Stores the EventDispatcher that dispatches this Event
in Event at line 93
public EventDispatcherInterface
getDispatcher()
Returns the EventDispatcher that dispatches this Event
in Event at line 105
public string
getName()
Gets the event's name.
in Event at line 117
public
setName(string $name)
Sets the event's name property.
at line 46
public
__construct(HttpKernelInterface $kernel, Request $request, $requestType)
at line 60
public HttpKernelInterface
getKernel()
Returns the kernel in which this event was thrown
at line 72
public Request
getRequest()
Returns the request the kernel is currently processing
at line 85
public integer
getRequestType()
Returns the request type the kernel is currently processing