summaryrefslogtreecommitdiff
path: root/ext/standard/password.c
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2018-02-04 05:44:28 -0200
committerNikita Popov <nikita.ppv@gmail.com>2018-02-04 17:00:24 +0100
commitaffc20f8912d53fb9eb75c48968414d129a2a04b (patch)
tree77065c0f5a41785f321a885df776b7c637670ed5 /ext/standard/password.c
parent0709eb80f3f20d37680503bd711c86c5834a6528 (diff)
downloadphp-git-affc20f8912d53fb9eb75c48968414d129a2a04b.tar.gz
Use bool instead of boolean in proto
Diffstat (limited to 'ext/standard/password.c')
-rw-r--r--ext/standard/password.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/password.c b/ext/standard/password.c
index 3a00582dc8..dff62f6d8e 100644
--- a/ext/standard/password.c
+++ b/ext/standard/password.c
@@ -212,7 +212,7 @@ PHP_FUNCTION(password_get_info)
}
/** }}} */
-/* {{{ proto boolean password_needs_rehash(string $hash, int $algo[, array $options])
+/* {{{ proto bool password_needs_rehash(string $hash, int $algo[, array $options])
Determines if a given hash requires re-hashing based upon parameters */
PHP_FUNCTION(password_needs_rehash)
{
@@ -286,7 +286,7 @@ PHP_FUNCTION(password_needs_rehash)
}
/* }}} */
-/* {{{ proto boolean password_verify(string password, string hash)
+/* {{{ proto bool password_verify(string password, string hash)
Verify a hash created using crypt() or password_hash() */
PHP_FUNCTION(password_verify)
{