summaryrefslogtreecommitdiffstats
path: root/Guard/Firewall
diff options
context:
space:
mode:
authorRyan Weaver <ryan@thatsquality.com>2015-05-17 18:16:06 -0400
committerRyan Weaver <ryan@thatsquality.com>2015-09-20 19:24:21 -0400
commit5fa45716c9461a07f03428754d2bb05a0e6f2943 (patch)
tree27b675465cbc2a7e93ed806cac2571964f2c2233 /Guard/Firewall
parent43d1a03737bdc39a9e70c7b6bc7792c912b46082 (diff)
downloadsymfony-security-5fa45716c9461a07f03428754d2bb05a0e6f2943.zip
symfony-security-5fa45716c9461a07f03428754d2bb05a0e6f2943.tar.gz
symfony-security-5fa45716c9461a07f03428754d2bb05a0e6f2943.tar.bz2
Thanks fabbot!
Diffstat (limited to 'Guard/Firewall')
-rw-r--r--Guard/Firewall/GuardAuthenticationListener.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/Guard/Firewall/GuardAuthenticationListener.php b/Guard/Firewall/GuardAuthenticationListener.php
index 6a4f09c..5c6de60 100644
--- a/Guard/Firewall/GuardAuthenticationListener.php
+++ b/Guard/Firewall/GuardAuthenticationListener.php
@@ -16,7 +16,7 @@ use Symfony\Component\Security\Http\Firewall\ListenerInterface;
use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface;
/**
- * Authentication listener for the "guard" system
+ * Authentication listener for the "guard" system.
*
* @author Ryan Weaver <weaverryan@gmail.com>
*/
@@ -30,11 +30,11 @@ class GuardAuthenticationListener implements ListenerInterface
private $rememberMeServices;
/**
- * @param GuardAuthenticatorHandler $guardHandler The Guard handler
- * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
- * @param string $providerKey The provider (i.e. firewall) key
- * @param GuardAuthenticatorInterface[] $guardAuthenticators The authenticators, with keys that match what's passed to GuardAuthenticationProvider
- * @param LoggerInterface $logger A LoggerInterface instance
+ * @param GuardAuthenticatorHandler $guardHandler The Guard handler
+ * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
+ * @param string $providerKey The provider (i.e. firewall) key
+ * @param GuardAuthenticatorInterface[] $guardAuthenticators The authenticators, with keys that match what's passed to GuardAuthenticationProvider
+ * @param LoggerInterface $logger A LoggerInterface instance
*/
public function __construct(GuardAuthenticatorHandler $guardHandler, AuthenticationManagerInterface $authenticationManager, $providerKey, $guardAuthenticators, LoggerInterface $logger = null)
{
@@ -50,7 +50,7 @@ class GuardAuthenticationListener implements ListenerInterface
}
/**
- * Iterates over each authenticator to see if each wants to authenticate the request
+ * Iterates over each authenticator to see if each wants to authenticate the request.
*
* @param GetResponseEvent $event
*/
@@ -147,12 +147,12 @@ class GuardAuthenticationListener implements ListenerInterface
/**
* Checks to see if remember me is supported in the authenticator and
- * on the firewall. If it is, the RememberMeServicesInterface is notified
+ * on the firewall. If it is, the RememberMeServicesInterface is notified.
*
* @param GuardAuthenticatorInterface $guardAuthenticator
- * @param Request $request
- * @param TokenInterface $token
- * @param Response $response
+ * @param Request $request
+ * @param TokenInterface $token
+ * @param Response $response
*/
private function triggerRememberMe(GuardAuthenticatorInterface $guardAuthenticator, Request $request, TokenInterface $token, Response $response = null)
{