Thanks again fabbot!

This commit is contained in:
Ryan Weaver 2015-05-18 09:45:17 -04:00
parent 7de05be3f6
commit 7a94994e8e

View File

@ -47,7 +47,7 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface
public function getCredentials(Request $request); 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() * The *credentials* are the return value from getCredentials()
* *
@ -64,14 +64,14 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface
public function getUser($credentials, UserProviderInterface $userProvider); 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() * The *credentials* are the return value from getCredentials()
* *
* @param mixed $credentials * @param mixed $credentials
* @param UserInterface $user * @param UserInterface $user
*
* @throws AuthenticationException * @throws AuthenticationException
* @return void
*/ */
public function checkCredentials($credentials, UserInterface $user); public function checkCredentials($credentials, UserInterface $user);