Browse Source

fix var name, define returned data type

main
ghost 10 months ago
parent
commit
c5f7e636e0
  1. 8
      src/Kevacoin.php

8
src/Kevacoin.php

@ -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
); );
} }
} }

Loading…
Cancel
Save