diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-08-24 09:18:02 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-08-24 09:18:02 +0200 |
commit | 1ce741e1c146dfadc1b8abc2bbc7626ac682f363 (patch) | |
tree | 32239eeec1ca38b3d2e0045e7f40011a16c027ef /Http/Authentication | |
parent | b60dfa578d6ab5e1766af7adb3f882e585ed161e (diff) | |
parent | 5ccfeae19f3bf9238148326f32850672f3fea7e4 (diff) | |
download | symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.zip symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.tar.gz symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
fixes CS
Diffstat (limited to 'Http/Authentication')
-rw-r--r-- | Http/Authentication/AuthenticationUtils.php | 3 | ||||
-rw-r--r-- | Http/Authentication/SimpleAuthenticationHandler.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Http/Authentication/AuthenticationUtils.php b/Http/Authentication/AuthenticationUtils.php index 317c8a0..4d5c71a 100644 --- a/Http/Authentication/AuthenticationUtils.php +++ b/Http/Authentication/AuthenticationUtils.php @@ -17,7 +17,7 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\Security; /** - * Extracts Security Errors from Request + * Extracts Security Errors from Request. * * @author Boris Vujicic <boris.vujicic@gmail.com> */ @@ -72,6 +72,7 @@ class AuthenticationUtils /** * @return Request + * * @throws \LogicException */ private function getRequest() diff --git a/Http/Authentication/SimpleAuthenticationHandler.php b/Http/Authentication/SimpleAuthenticationHandler.php index 6a1311f..c5c43f2 100644 --- a/Http/Authentication/SimpleAuthenticationHandler.php +++ b/Http/Authentication/SimpleAuthenticationHandler.php @@ -19,7 +19,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface; /** - * Class to proxy authentication success/failure handlers + * Class to proxy authentication success/failure handlers. * * Events are sent to the SimpleAuthenticatorInterface if it implements * the right interface, otherwise (or if it fails to return a Response) |