diff options
author | Ryan Weaver <ryan@thatsquality.com> | 2015-05-18 09:45:17 -0400 |
---|---|---|
committer | Ryan Weaver <ryan@thatsquality.com> | 2015-09-20 19:24:22 -0400 |
commit | 6adfc70d635d4731f68d8e1cef145395e5d3d662 (patch) | |
tree | 218074548817127bba8042d56253b4bac49505b4 | |
parent | c92999df6b3b8b75856a4a1570723363951145c4 (diff) | |
download | symfony-security-6adfc70d635d4731f68d8e1cef145395e5d3d662.zip symfony-security-6adfc70d635d4731f68d8e1cef145395e5d3d662.tar.gz symfony-security-6adfc70d635d4731f68d8e1cef145395e5d3d662.tar.bz2 |
Thanks again fabbot!
-rw-r--r-- | Guard/GuardAuthenticatorInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Guard/GuardAuthenticatorInterface.php b/Guard/GuardAuthenticatorInterface.php index a727371..e55f178 100644 --- a/Guard/GuardAuthenticatorInterface.php +++ b/Guard/GuardAuthenticatorInterface.php @@ -47,7 +47,7 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface public function getCredentials(Request $request); /** - * Return a UserInterface object based on the credentials + * Return a UserInterface object based on the credentials. * * The *credentials* are the return value from getCredentials() * @@ -64,14 +64,14 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface public function getUser($credentials, UserProviderInterface $userProvider); /** - * Throw an AuthenticationException if the credentials are invalid + * Throw an AuthenticationException if the credentials are invalid. * * The *credentials* are the return value from getCredentials() * - * @param mixed $credentials + * @param mixed $credentials * @param UserInterface $user + * * @throws AuthenticationException - * @return void */ public function checkCredentials($credentials, UserInterface $user); |