class SwitchUserEvent extends Event
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(Request $request, UserInterface $targetUser) | ||
| getRequest() | ||
| getTargetUser() |
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.