diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 08:52:58 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 08:52:58 +0100 |
commit | a33483179bb240fd3e207eb518964c7e1c08e906 (patch) | |
tree | 7a9815a88fa0878fd98d455231fab21cae4cc84e | |
parent | cfc6f8ea250bb58798145b68bece93ce20f4a8f4 (diff) | |
parent | d0d852abb163a9371a7f07d2bc80824cf2d81b4d (diff) | |
download | symfony-security-a33483179bb240fd3e207eb518964c7e1c08e906.zip symfony-security-a33483179bb240fd3e207eb518964c7e1c08e906.tar.gz symfony-security-a33483179bb240fd3e207eb518964c7e1c08e906.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
CS fixes
Remove trailing space
CS: apply rules
[Yaml] Clean some messages + add test case
[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 |