Symfony2 API
Class

Symfony\Component\Security\Http\Event\SwitchUserEvent

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.

Return Value

Boolean Whether propagation was already stopped for this event.

See also

Event::stopPropagation

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

Parameters

EventDispatcherInterface $dispatcher

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.

Return Value

string

in Event at line 117
public setName(string $name)

Sets the event's name property.

Parameters

string $name The event name.

at line 24
public __construct(Request $request, UserInterface $targetUser)

Parameters

Request $request
UserInterface $targetUser

at line 30
public getRequest()

at line 35
public getTargetUser()