summaryrefslogtreecommitdiffstats
path: root/Guard
diff options
context:
space:
mode:
Diffstat (limited to 'Guard')
-rw-r--r--Guard/GuardAuthenticatorInterface.php8
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);