diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 09:09:47 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2016-11-03 09:11:03 +0100 |
commit | 6a0bc2f5d3ca7989ead2644a33391c5c72772cb6 (patch) | |
tree | 4a1e12f8a186295d6818883986ccb305c5017884 /Guard/GuardAuthenticatorInterface.php | |
parent | 140f8ddb315a6b858ca74d0380e31758bd85d27d (diff) | |
parent | bf1abf4bdba73649099fe14b44352c0e2665a6a5 (diff) | |
download | symfony-security-6a0bc2f5d3ca7989ead2644a33391c5c72772cb6.zip symfony-security-6a0bc2f5d3ca7989ead2644a33391c5c72772cb6.tar.gz symfony-security-6a0bc2f5d3ca7989ead2644a33391c5c72772cb6.tar.bz2 |
erge branch '3.1'
* 3.1:
Remove trailing space
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
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 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 |