class InteractiveLoginEvent extends Event

Methods

bool
isPropagationStopped()

Returns whether further event listeners should be triggered.

from Event
stopPropagation()

Stops the propagation of the event to further event listeners.

from Event
__construct(Request $request, TokenInterface $authenticationToken)

No description

getRequest()

Gets the request.

getAuthenticationToken()

Gets the authentication token.

Details

bool isPropagationStopped()

Returns whether further event listeners should be triggered.

Return Value

bool Whether propagation was already stopped for this event

See also

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().

__construct(Request $request, TokenInterface $authenticationToken)

Parameters

Request $request
TokenInterface $authenticationToken

Request getRequest()

Gets the request.

Return Value

Request A Request instance

TokenInterface getAuthenticationToken()

Gets the authentication token.

Return Value

TokenInterface A TokenInterface instance