diff options
author | Pascal Borreli <pascal@borreli.com> | 2011-05-29 23:25:35 +0000 |
---|---|---|
committer | Pascal Borreli <pascal@borreli.com> | 2011-05-29 23:33:36 +0000 |
commit | 5fcd8d03276e142bbedd2194f59cf8e551d624c7 (patch) | |
tree | 98f274df013c66d8fd65942aa878a6d12b3a41ca /Http | |
parent | e8f01b158d44c02ba7801477ff8830001cc33bef (diff) | |
download | symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.zip symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.tar.gz symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.tar.bz2 |
[Various] Fixed phpdoc
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php index 2b2db40..ac3f784 100644 --- a/Http/Firewall/AbstractAuthenticationListener.php +++ b/Http/Firewall/AbstractAuthenticationListener.php @@ -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) { |