AuthenticationSuccessEvent
extends AuthenticationEvent
in package
FinalYes
This is a general purpose authentication event.
Table of Contents
Properties
- $authenticationToken : mixed
- $propagationStopped : bool
Methods
- __construct() : mixed
- getAuthenticationToken() : mixed
- 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
Methods
__construct()
public
__construct(TokenInterface $token) : mixed
Parameters
- $token : TokenInterface
getAuthenticationToken()
public
getAuthenticationToken() : mixed
isPropagationStopped()
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().