diff options
author | Anthony Ferrara <me@ircmaxell.com> | 2012-12-04 05:45:32 -0800 |
---|---|---|
committer | Anthony Ferrara <me@ircmaxell.com> | 2012-12-04 05:45:32 -0800 |
commit | 2a7b6355d27c65f7e0de1fbbc0016b5b6cd8226b (patch) | |
tree | 4fdf7746e6db870cf664a69857b4192e6a967463 | |
parent | 743710e7d6e463bc4f0a3f1151334e93e8f72050 (diff) | |
parent | 327d2844ba844fd5d23a3198341efa98818a5a8f (diff) | |
download | password_compat-2a7b6355d27c65f7e0de1fbbc0016b5b6cd8226b.zip password_compat-2a7b6355d27c65f7e0de1fbbc0016b5b6cd8226b.tar.gz password_compat-2a7b6355d27c65f7e0de1fbbc0016b5b6cd8226b.tar.bz2 |
Merge pull request #12 from bcremer/patch-1
Fix invalid phpdoc
-rw-r--r-- | lib/password.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/password.php b/lib/password.php index 20f2e51..eaf1e2d 100644 --- a/lib/password.php +++ b/lib/password.php @@ -25,7 +25,7 @@ if (!defined('PASSWORD_BCRYPT')) { * @param int $algo The algorithm to use (Defined by PASSWORD_* constants) * @param array $options The options for the algorithm to use * - * @returns string|false The hashed password, or false on error. + * @return string|false The hashed password, or false on error. */ function password_hash($password, $algo, array $options = array()) { if (!function_exists('crypt')) { |