Fix RememberMe with null password

This commit is contained in:
Jérémy Derussé 2020-01-14 22:28:32 +01:00
parent db3134eba4
commit 820eb357c8
No known key found for this signature in database
GPG Key ID: 2083FA5758C473D2

View File

@ -92,7 +92,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices
* @param string $class
* @param string $username The username
* @param int $expires The Unix timestamp when the cookie expires
* @param string $password The encoded password
* @param string|null $password The encoded password
*
* @return string
*/
@ -114,7 +114,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices
* @param string $class
* @param string $username The username
* @param int $expires The Unix timestamp when the cookie expires
* @param string $password The encoded password
* @param string|null $password The encoded password
*
* @return string
*/