diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 09:04:31 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 09:04:31 +0100 |
commit | bf1abf4bdba73649099fe14b44352c0e2665a6a5 (patch) | |
tree | 1b2bfa6f87a400b9bd56e3833603138587f09c02 | |
parent | 754974643b1a8b2f8ec632d35a08b72d777f1058 (diff) | |
parent | a33483179bb240fd3e207eb518964c7e1c08e906 (diff) | |
download | symfony-security-bf1abf4bdba73649099fe14b44352c0e2665a6a5.zip symfony-security-bf1abf4bdba73649099fe14b44352c0e2665a6a5.tar.gz symfony-security-bf1abf4bdba73649099fe14b44352c0e2665a6a5.tar.bz2 |
Merge branch '2.8' into 3.1
* 2.8:
CS fixes
Remove trailing space
CS: apply rules
[Yaml] Clean some messages + add test case
[Console] simplified code
[Form] Fix UrlType transforms valid protocols
[SecurityBundle] Changed encoder configuration example to bcrypt
-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 b28f06d..fef4a04 100644 --- a/Guard/GuardAuthenticatorInterface.php +++ b/Guard/GuardAuthenticatorInterface.php @@ -39,7 +39,7 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface * Whatever value you return here will be passed to getUser() and checkCredentials() * * For example, for a form login, you might: - * + * * if ($request->request->has('_username')) { * return array( * 'username' => $request->request->get('_username'), @@ -87,7 +87,7 @@ interface GuardAuthenticatorInterface extends AuthenticationEntryPointInterface * * @param mixed $credentials * @param UserInterface $user - * + * * @return bool * * @throws AuthenticationException |