SecurityListener implements EventSubscriberInterface
Table of Contents
$em | ||
---|---|---|
$cartService | ||
$purchaseFlow | ||
$requestStack | ||
__construct() | mixed | |
onInteractiveLogin() | mixed | |
onAuthenticationFailure() | mixed | |
getSubscribedEvents() | Returns an array of event names this subscriber wants to listen to. | array |
Properties
$em
protected
mixed
$em
$cartService
protected
mixed
$cartService
$purchaseFlow
protected
mixed
$purchaseFlow
$requestStack
protected
mixed
$requestStack
Methods
__construct()
public
__construct(
$em :
EntityManagerInterface
, $cartService :
CartService
, $cartPurchaseFlow :
PurchaseFlow
, $requestStack :
RequestStack
)
: mixed
Parameters
- $em : EntityManagerInterface
- $cartService : CartService
- $cartPurchaseFlow : PurchaseFlow
- $requestStack : RequestStack
Return values
mixedonInteractiveLogin()
public
onInteractiveLogin(
$event :
InteractiveLoginEvent
)
: mixed
Parameters
- $event : InteractiveLoginEvent
Return values
mixedonAuthenticationFailure()
public
onAuthenticationFailure(
$event :
AuthenticationFailureEvent
)
: mixed
Parameters
- $event : AuthenticationFailureEvent
Return values
mixedgetSubscribedEvents()
Returns an array of event names this subscriber wants to listen to.
public
static getSubscribedEvents(
)
: array
The array keys are event names and the value can be:
- The method name to call (priority defaults to 0)
- An array composed of the method name to call and the priority
- An array of arrays composed of the method names to call and respective priorities, or 0 if unset
For instance:
- array('eventName' => 'methodName')
- array('eventName' => array('methodName', $priority))
- array('eventName' => array(array('methodName1', $priority), array('methodName2'))
Return values
array —The event names to listen to