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."
This commit is contained in:
Jannik Zschiesche 2013-09-10 19:07:43 +02:00 committed by Fabien Potencier
parent dc762e10d7
commit 1c623c6d46
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ interface UserInterface
* *
* This can return null if the password was not encoded using a salt. * 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(); public function getSalt();