diff options
author | Jannik Zschiesche <hello@apfelbox.net> | 2013-09-10 19:07:43 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-10 19:35:57 +0200 |
commit | 390b3dbf915f9f5b0d2d8b591f37057d60a37879 (patch) | |
tree | ca6bdba0448e40dda60b6c27ca8d8b1578354569 /Core/User/UserInterface.php | |
parent | 21ac0805b6ab455862ecadad5f1bfb9a524c4087 (diff) | |
download | symfony-security-390b3dbf915f9f5b0d2d8b591f37057d60a37879.zip symfony-security-390b3dbf915f9f5b0d2d8b591f37057d60a37879.tar.gz symfony-security-390b3dbf915f9f5b0d2d8b591f37057d60a37879.tar.bz2 |
Fixed docblock in UserInterface::getSalt()
This method can return null, too.
See the line above:
> "This can return null if the password was not encoded using a salt."
Diffstat (limited to 'Core/User/UserInterface.php')
-rw-r--r-- | Core/User/UserInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/User/UserInterface.php b/Core/User/UserInterface.php index ed96ca9..f5bbde2 100644 --- a/Core/User/UserInterface.php +++ b/Core/User/UserInterface.php @@ -64,7 +64,7 @@ interface UserInterface * * This can return null if the password was not encoded using a salt. * - * @return string The salt + * @return string|null The salt */ public function getSalt(); |