InteractiveLoginEvent
extends Event
in package
FinalYes
Event is the base class for classes containing event data.
Tags
Table of Contents
Properties
- $authenticationToken : mixed
- $propagationStopped : bool
- $request : mixed
Methods
- __construct() : mixed
- getAuthenticationToken() : TokenInterface
- getRequest() : Request
- isPropagationStopped() : bool
- Is propagation stopped?
- stopPropagation() : void
- Stops the propagation of the event to further event listeners.
Properties
$authenticationToken
private
mixed
$authenticationToken
$propagationStopped
private
bool
$propagationStopped
= false
$request
private
mixed
$request
Methods
__construct()
public
__construct(Request $request, TokenInterface $authenticationToken) : mixed
Parameters
- $request : Request
- $authenticationToken : TokenInterface
getAuthenticationToken()
public
getAuthenticationToken() : TokenInterface
Return values
TokenInterfacegetRequest()
public
getRequest() : Request
Return values
RequestisPropagationStopped()
Is propagation stopped?
public
isPropagationStopped() : bool
Return values
bool —True if the Event is complete and no further listeners should be called. False to continue calling listeners.
stopPropagation()
Stops the propagation of the event to further event listeners.
public
stopPropagation() : void
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().