diff options
author | Ryan Weaver <ryan@thatsquality.com> | 2015-05-18 08:48:41 -0400 |
---|---|---|
committer | Ryan Weaver <ryan@thatsquality.com> | 2015-09-20 19:24:21 -0400 |
commit | 4c99ad9dc194faa067af532881f2eceb3b4d846d (patch) | |
tree | 0a2b69c3617a73276ac61cac272f27ad9bc29e97 /Guard/GuardAuthenticatorInterface.php | |
parent | 5fa45716c9461a07f03428754d2bb05a0e6f2943 (diff) | |
download | symfony-security-4c99ad9dc194faa067af532881f2eceb3b4d846d.zip symfony-security-4c99ad9dc194faa067af532881f2eceb3b4d846d.tar.gz symfony-security-4c99ad9dc194faa067af532881f2eceb3b4d846d.tar.bz2 |
Updating interface method per suggestion - makes sense to me, Request is redundant
Diffstat (limited to 'Guard/GuardAuthenticatorInterface.php')
-rw-r--r-- | Guard/GuardAuthenticatorInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Guard/GuardAuthenticatorInterface.php b/Guard/GuardAuthenticatorInterface.php index 0b4306c..4b1e407 100644 --- a/Guard/GuardAuthenticatorInterface.php +++ b/Guard/GuardAuthenticatorInterface.php @@ -44,13 +44,13 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface * * @return mixed|null */ - public function getCredentialsFromRequest(Request $request); + public function getCredentials(Request $request); /** * Return a UserInterface object based on the credentials OR throw * an AuthenticationException. * - * The *credentials* are the return value from getCredentialsFromRequest() + * The *credentials* are the return value from getCredentials() * * @param mixed $credentials * @param UserProviderInterface $userProvider |