diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:38:28 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:43:50 +0200 |
commit | c900a0c34f7da7107e68c558e4bddd1676e7da43 (patch) | |
tree | 7b4e8d411940ce4d6aedc525ad110590d70db652 /Core/Encoder/PasswordEncoderInterface.php | |
parent | 1d26f9286503935f3d4670d2087c1194063687be (diff) | |
download | symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.zip symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.tar.gz symfony-security-c900a0c34f7da7107e68c558e4bddd1676e7da43.tar.bz2 |
fixed CS (mainly method signatures)v2.0.16
Diffstat (limited to 'Core/Encoder/PasswordEncoderInterface.php')
-rw-r--r-- | Core/Encoder/PasswordEncoderInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Encoder/PasswordEncoderInterface.php b/Core/Encoder/PasswordEncoderInterface.php index dae6c69..78b4e42 100644 --- a/Core/Encoder/PasswordEncoderInterface.php +++ b/Core/Encoder/PasswordEncoderInterface.php @@ -26,7 +26,7 @@ interface PasswordEncoderInterface * * @return string The encoded password */ - function encodePassword($raw, $salt); + public function encodePassword($raw, $salt); /** * Checks a raw password against an encoded password. @@ -37,5 +37,5 @@ interface PasswordEncoderInterface * * @return Boolean true if the password is valid, false otherwise */ - function isPasswordValid($encoded, $raw, $salt); + public function isPasswordValid($encoded, $raw, $salt); } |