diff options
author | Graham Campbell <graham@mineuk.com> | 2014-12-21 17:00:50 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 16:58:09 +0100 |
commit | a542abcf38b95de8e8f01f42b6127e7fffc645a8 (patch) | |
tree | c84aaf43e18f7fc448861b918a5785a117013fb6 /Http/Firewall | |
parent | 3b1993579d11af545a1effd2cb3367665dd5a5fd (diff) | |
download | symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.zip symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.gz symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.bz2 |
[2.3] CS And DocBlock Fixes
Diffstat (limited to 'Http/Firewall')
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 2 | ||||
-rw-r--r-- | Http/Firewall/AbstractPreAuthenticatedListener.php | 2 | ||||
-rw-r--r-- | Http/Firewall/ContextListener.php | 2 | ||||
-rw-r--r-- | Http/Firewall/ExceptionListener.php | 1 | ||||
-rw-r--r-- | Http/Firewall/ListenerInterface.php | 2 | ||||
-rw-r--r-- | Http/Firewall/LogoutListener.php | 4 | ||||
-rw-r--r-- | Http/Firewall/RememberMeListener.php | 2 |
7 files changed, 8 insertions, 7 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php index 2b3d386..f71089f 100644 --- a/Http/Firewall/AbstractAuthenticationListener.php +++ b/Http/Firewall/AbstractAuthenticationListener.php @@ -108,7 +108,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface } /** - * Sets the RememberMeServices implementation to use + * Sets the RememberMeServices implementation to use. * * @param RememberMeServicesInterface $rememberMeServices */ diff --git a/Http/Firewall/AbstractPreAuthenticatedListener.php b/Http/Firewall/AbstractPreAuthenticatedListener.php index 94ae901..895df53 100644 --- a/Http/Firewall/AbstractPreAuthenticatedListener.php +++ b/Http/Firewall/AbstractPreAuthenticatedListener.php @@ -96,7 +96,7 @@ abstract class AbstractPreAuthenticatedListener implements ListenerInterface } /** - * Clears a PreAuthenticatedToken for this provider (if present) + * Clears a PreAuthenticatedToken for this provider (if present). * * @param AuthenticationException $exception */ diff --git a/Http/Firewall/ContextListener.php b/Http/Firewall/ContextListener.php index c4b0a1e..3ea6512 100644 --- a/Http/Firewall/ContextListener.php +++ b/Http/Firewall/ContextListener.php @@ -135,7 +135,7 @@ class ContextListener implements ListenerInterface } /** - * Refreshes the user by reloading it from the user provider + * Refreshes the user by reloading it from the user provider. * * @param TokenInterface $token * diff --git a/Http/Firewall/ExceptionListener.php b/Http/Firewall/ExceptionListener.php index e7e2989..58564dd 100644 --- a/Http/Firewall/ExceptionListener.php +++ b/Http/Firewall/ExceptionListener.php @@ -165,6 +165,7 @@ class ExceptionListener * @param AuthenticationException $authException * * @return Response + * * @throws AuthenticationException */ private function startAuthentication(Request $request, AuthenticationException $authException) diff --git a/Http/Firewall/ListenerInterface.php b/Http/Firewall/ListenerInterface.php index b670474..0fc8d11 100644 --- a/Http/Firewall/ListenerInterface.php +++ b/Http/Firewall/ListenerInterface.php @@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Http\Firewall; use Symfony\Component\HttpKernel\Event\GetResponseEvent; /** - * Interface that must be implemented by firewall listeners + * Interface that must be implemented by firewall listeners. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ diff --git a/Http/Firewall/LogoutListener.php b/Http/Firewall/LogoutListener.php index a558c2c..5a68670 100644 --- a/Http/Firewall/LogoutListener.php +++ b/Http/Firewall/LogoutListener.php @@ -59,7 +59,7 @@ class LogoutListener implements ListenerInterface } /** - * Adds a logout handler + * Adds a logout handler. * * @param LogoutHandlerInterface $handler */ @@ -69,7 +69,7 @@ class LogoutListener implements ListenerInterface } /** - * Performs the logout if requested + * Performs the logout if requested. * * If a CsrfProviderInterface instance is available, it will be used to * validate the request. diff --git a/Http/Firewall/RememberMeListener.php b/Http/Firewall/RememberMeListener.php index 6ca3842..beacff3 100644 --- a/Http/Firewall/RememberMeListener.php +++ b/Http/Firewall/RememberMeListener.php @@ -22,7 +22,7 @@ use Symfony\Component\Security\Http\SecurityEvents; use Symfony\Component\EventDispatcher\EventDispatcherInterface; /** - * RememberMeListener implements authentication capabilities via a cookie + * RememberMeListener implements authentication capabilities via a cookie. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ |