From ec922456ca0c899b3faaab2472dfdcad5756e74c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 2 Feb 2025 00:12:57 +0100 Subject: [PATCH] Continued: - ops, proper type now --- framework/main/classes/scrypt/class_Scrypt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/main/classes/scrypt/class_Scrypt.php b/framework/main/classes/scrypt/class_Scrypt.php index 1b609ef2..66683e9c 100644 --- a/framework/main/classes/scrypt/class_Scrypt.php +++ b/framework/main/classes/scrypt/class_Scrypt.php @@ -138,7 +138,7 @@ abstract class Scrypt extends BaseFrameworkSystem * * @return string The hashed password */ - public static function hashScrypt (string $password, string $salt = '', int $N = 16384, int $r = 8, int $p = 1): str + public static function hashScrypt (string $password, string $salt = '', int $N = 16384, int $r = 8, int $p = 1): string { if (!FrameworkFeature::isFeatureAvailable('hubcoin_reward')) { // Feature has been disabled -- 2.39.5