From 7a94994e8e5116ccf935aa25d44dfe9c67e9b63c Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Mon, 18 May 2015 09:45:17 -0400 Subject: [PATCH] Thanks again fabbot! --- .../Security/Guard/GuardAuthenticatorInterface.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php b/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php index a727371409..e55f178e9d 100644 --- a/src/Symfony/Component/Security/Guard/GuardAuthenticatorInterface.php +++ b/src/Symfony/Component/Security/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);