summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Cremer <crem0r@gmail.com>2012-11-30 23:28:06 +0100
committerBenjamin Cremer <crem0r@gmail.com>2012-11-30 23:28:06 +0100
commit327d2844ba844fd5d23a3198341efa98818a5a8f (patch)
tree4fdf7746e6db870cf664a69857b4192e6a967463
parent743710e7d6e463bc4f0a3f1151334e93e8f72050 (diff)
downloadpassword_compat-327d2844ba844fd5d23a3198341efa98818a5a8f.zip
password_compat-327d2844ba844fd5d23a3198341efa98818a5a8f.tar.gz
password_compat-327d2844ba844fd5d23a3198341efa98818a5a8f.tar.bz2
Fix invalid phpdoc
-rw-r--r--lib/password.php2
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')) {