diff options
author | Graham Campbell <graham@mineuk.com> | 2014-11-30 13:33:44 +0000 |
---|---|---|
committer | Graham Campbell <graham@mineuk.com> | 2014-11-30 13:33:44 +0000 |
commit | e5dfe6a3e96c71e87c0ca9aa84115accd9ebb229 (patch) | |
tree | 197d405115891642eb8c9eb488b775251c427e98 /Core/Encoder/BasePasswordEncoder.php | |
parent | c54f038a64896f2963a4412974b10cd341ac6e73 (diff) | |
download | symfony-security-e5dfe6a3e96c71e87c0ca9aa84115accd9ebb229.zip symfony-security-e5dfe6a3e96c71e87c0ca9aa84115accd9ebb229.tar.gz symfony-security-e5dfe6a3e96c71e87c0ca9aa84115accd9ebb229.tar.bz2 |
Docblock fixes
Diffstat (limited to 'Core/Encoder/BasePasswordEncoder.php')
-rw-r--r-- | Core/Encoder/BasePasswordEncoder.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Encoder/BasePasswordEncoder.php b/Core/Encoder/BasePasswordEncoder.php index 5bf223b..1c9ada1 100644 --- a/Core/Encoder/BasePasswordEncoder.php +++ b/Core/Encoder/BasePasswordEncoder.php @@ -79,7 +79,7 @@ abstract class BasePasswordEncoder implements PasswordEncoderInterface * @param string $password1 The first password * @param string $password2 The second password * - * @return bool true if the two passwords are the same, false otherwise + * @return bool true if the two passwords are the same, false otherwise */ protected function comparePasswords($password1, $password2) { @@ -91,7 +91,7 @@ abstract class BasePasswordEncoder implements PasswordEncoderInterface * * @param string $password The password to check * - * @return bool true if the password is too long, false otherwise + * @return bool true if the password is too long, false otherwise */ protected function isPasswordTooLong($password) { |