|
@@ -63,11 +63,16 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
|
|
|
/**
|
|
|
* Constructor.
|
|
|
*
|
|
|
- * @param SecurityContextInterface $securityContext A SecurityContext instance
|
|
|
- * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
|
|
|
- * @param array $options An array of options for the processing of a successful, or failed authentication attempt
|
|
|
- * @param LoggerInterface $logger A LoggerInterface instance
|
|
|
- * @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance
|
|
|
+ * @param SecurityContextInterface $securityContext A SecurityContext instance
|
|
|
+ * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
|
|
|
+ * @param SessionAuthenticationStrategyInterface $sessionStrategy
|
|
|
+ * @param string $providerKey
|
|
|
+ * @param array $options An array of options for the processing of a
|
|
|
+ * successful, or failed authentication attempt
|
|
|
+ * @param AuthenticationSuccessHandlerInterface $successHandler
|
|
|
+ * @param AuthenticationFailureHandlerInterface $failureHandler
|
|
|
+ * @param LoggerInterface $logger A LoggerInterface instance
|
|
|
+ * @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance
|
|
|
*/
|
|
|
public function __construct(SecurityContextInterface $securityContext, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, $providerKey, array $options = array(), AuthenticationSuccessHandlerInterface $successHandler = null, AuthenticationFailureHandlerInterface $failureHandler = null, LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null)
|
|
|
{
|