diff options
author | Alexey Popkov <patashnik@live.ru> | 2011-03-24 14:00:16 +0300 |
---|---|---|
committer | Alexey Popkov <patashnik@live.ru> | 2011-03-24 14:00:16 +0300 |
commit | 5f8ad06b02f5a77fa392245584db46bd50e03456 (patch) | |
tree | bab971ade3cf33929b4699ddc09ad031b3036767 /Http | |
parent | bc2fd05a597532cb19bab450512f93251e2f68bf (diff) | |
download | symfony-security-5f8ad06b02f5a77fa392245584db46bd50e03456.zip symfony-security-5f8ad06b02f5a77fa392245584db46bd50e03456.tar.gz symfony-security-5f8ad06b02f5a77fa392245584db46bd50e03456.tar.bz2 |
[SecurityBundle] fixed missing argument EventDisplatcher in RememberMe service
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 1 | ||||
-rw-r--r-- | Http/Firewall/RememberMeListener.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php index 5606c49..6bad96f 100644 --- a/Http/Firewall/AbstractAuthenticationListener.php +++ b/Http/Firewall/AbstractAuthenticationListener.php @@ -67,6 +67,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface * @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 */ 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) { diff --git a/Http/Firewall/RememberMeListener.php b/Http/Firewall/RememberMeListener.php index c13845c..db8910b 100644 --- a/Http/Firewall/RememberMeListener.php +++ b/Http/Firewall/RememberMeListener.php @@ -47,6 +47,7 @@ class RememberMeListener implements ListenerInterface * @param RememberMeServicesInterface $rememberMeServices * @param AuthenticationManagerInterface $authenticationManager * @param LoggerInterface $logger + * @param EventDispatcherInterface $dispatcher */ public function __construct(SecurityContext $securityContext, RememberMeServicesInterface $rememberMeServices, AuthenticationManagerInterface $authenticationManager, LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null) { |