summaryrefslogtreecommitdiff
path: root/app/User.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-06-16 13:47:15 +0100
committerGreg Roach <fisharebest@gmail.com>2016-06-16 13:47:15 +0100
commit1154c4fe3b94d7864e4b27617c60fe3fd947c786 (patch)
tree1f332a4d3164bf20b3aa95eb17db0cad6b5f373b /app/User.php
parentb4c7f664749e885633649dd41f435d21c4435ef0 (diff)
downloadwebtrees-1154c4fe3b94d7864e4b27617c60fe3fd947c786.tar.gz
webtrees-1154c4fe3b94d7864e4b27617c60fe3fd947c786.tar.bz2
webtrees-1154c4fe3b94d7864e4b27617c60fe3fd947c786.zip
php-cs-fixer
Diffstat (limited to 'app/User.php')
-rw-r--r--app/User.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/User.php b/app/User.php
index 1ca1debdd8..ad14e2d889 100644
--- a/app/User.php
+++ b/app/User.php
@@ -512,7 +512,7 @@ class User {
* The ircmaxell/password_compat implementation of the password_hash() function
* relies on an encryption library which is not secure in PHP < 5.3.7
*
- * @return boolean
+ * @return bool
*/
private static function isPhpCryptBroken() {
return PHP_VERSION_ID < 50307 && password_hash('foo', PASSWORD_DEFAULT) === false;