diff options
author | Romain Neutron <imprec@gmail.com> | 2014-04-18 22:37:14 +0200 |
---|---|---|
committer | Romain Neutron <imprec@gmail.com> | 2014-04-18 22:37:14 +0200 |
commit | c5899fcc178588d382ad4f65d426c0ab38b10951 (patch) | |
tree | 0b4a963ca8e2b38683c7e735b7bce72ba8b2bac4 /Http | |
parent | e61596f268884e2584fb667016b4c3ad72270a1d (diff) | |
download | symfony-security-c5899fcc178588d382ad4f65d426c0ab38b10951.zip symfony-security-c5899fcc178588d382ad4f65d426c0ab38b10951.tar.gz symfony-security-c5899fcc178588d382ad4f65d426c0ab38b10951.tar.bz2 |
Fix doc blocks
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/SimpleFormAuthenticationListener.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Http/Firewall/SimpleFormAuthenticationListener.php b/Http/Firewall/SimpleFormAuthenticationListener.php index f79ce5c..cf3d94d 100644 --- a/Http/Firewall/SimpleFormAuthenticationListener.php +++ b/Http/Firewall/SimpleFormAuthenticationListener.php @@ -50,8 +50,11 @@ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener * successful, or failed authentication attempt * @param LoggerInterface $logger A LoggerInterface instance * @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance - * @param SimpleFormAuthenticatorInterface $simpleAuthenticator A SimpleFormAuthenticatorInterface instance - * @param CsrfTokenManagerInterface $csrfTokenManager A CsrfTokenManagerInterface instance + * @param CsrfTokenManagerInterface $csrfTokenManager A SimpleFormAuthenticatorInterface instance + * @param SimpleFormAuthenticatorInterface $simpleAuthenticator A CsrfTokenManagerInterface instance + * + * @throws \InvalidArgumentException In case no simple authenticator is provided + * @throws InvalidArgumentException In case an invalid CSRF token manager is passed */ public function __construct(SecurityContextInterface $securityContext, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, HttpUtils $httpUtils, $providerKey, AuthenticationSuccessHandlerInterface $successHandler, AuthenticationFailureHandlerInterface $failureHandler, array $options = array(), LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null, CsrfTokenManagerInterface $csrfTokenManager = null, SimpleFormAuthenticatorInterface $simpleAuthenticator = null) { |