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/PasswordEncoderInterface.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/PasswordEncoderInterface.php')
-rw-r--r-- | Core/Encoder/PasswordEncoderInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Encoder/PasswordEncoderInterface.php b/Core/Encoder/PasswordEncoderInterface.php index 23acaf3..8c018be 100644 --- a/Core/Encoder/PasswordEncoderInterface.php +++ b/Core/Encoder/PasswordEncoderInterface.php @@ -35,7 +35,7 @@ interface PasswordEncoderInterface * @param string $raw A raw password * @param string $salt The salt * - * @return bool true if the password is valid, false otherwise + * @return bool true if the password is valid, false otherwise */ public function isPasswordValid($encoded, $raw, $salt); } |