diff options
| author | 2023-07-07 22:36:27 +0200 | |
|---|---|---|
| committer | 2023-07-07 22:36:27 +0200 | |
| commit | f8f163d054110f7e0ff6650fca146b474335f4bd (patch) | |
| tree | dbd831e600bc76ca2830cd417bd52b712ff97309 /app/Utils | |
| parent | 7f9594b8c7d7799f2e5f89328bd5981410db8cf0 (diff) | |
Chore/processing of depreciations and updating code to php72 minimum (#5504)
* processing of depreciations and updating of code to php7.2 minimum
* Autoformat many strange array indenting
And revert a few unwanted changes
---------
Co-authored-by: Luc <sanchezluc+freshrss@gmail.com>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/Utils')
| -rw-r--r-- | app/Utils/passwordUtil.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Utils/passwordUtil.php b/app/Utils/passwordUtil.php index 0edead213..4e3040f4a 100644 --- a/app/Utils/passwordUtil.php +++ b/app/Utils/passwordUtil.php @@ -12,7 +12,7 @@ class FreshRSS_password_Util { $passwordHash = password_hash( $passwordPlain, PASSWORD_BCRYPT, - array('cost' => self::BCRYPT_COST) + ['cost' => self::BCRYPT_COST] ); // Compatibility with bcrypt.js |
