diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-18 22:41:38 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-04-18 22:41:38 +0200 |
commit | bb5a27217465a6923ab1ee28825240b83538db56 (patch) | |
tree | 5c4b8d62ebed05ffa4c7df1386e0a6f443db34f7 /Http | |
parent | 2a3393fbb9f593f6d0958a3058466593d6f9f69f (diff) | |
parent | c5899fcc178588d382ad4f65d426c0ab38b10951 (diff) | |
download | symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.zip symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.tar.gz symfony-security-bb5a27217465a6923ab1ee28825240b83538db56.tar.bz2 |
minor #10738 [2.4] Fix doc blocks (romainneutron)
This PR was merged into the 2.4 branch.
Discussion
----------
[2.4] Fix doc blocks
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | n/a
| License | MIT
this follows #10737
Commits
-------
c01915d 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) { |