fix var name, define returned data type

This commit is contained in:
ghost 2024-02-12 21:20:27 +02:00
parent 22c122b6fe
commit c5f7e636e0

View File

@ -6,12 +6,12 @@ namespace Kvazar\Crypto;
class Kevacoin class Kevacoin
{ {
public static function decode(string $value) public static function decode(string $value): mixed
{ {
if (is_numeric($string) && $string < 0xFFFFFFFF) if (is_numeric($value) && $value < 0xFFFFFFFF)
{ {
return mb_chr( return mb_chr(
$string, $value,
'ASCII' 'ASCII'
); );
} }
@ -19,7 +19,7 @@ class Kevacoin
else else
{ {
return hex2bin( return hex2bin(
$string $value
); );
} }
} }