mirror of
https://github.com/kvazar-network/crypto-php.git
synced 2025-01-31 09:14:42 +00:00
fix var name, define returned data type
This commit is contained in:
parent
22c122b6fe
commit
c5f7e636e0
@ -6,12 +6,12 @@ namespace Kvazar\Crypto;
|
||||
|
||||
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(
|
||||
$string,
|
||||
$value,
|
||||
'ASCII'
|
||||
);
|
||||
}
|
||||
@ -19,7 +19,7 @@ class Kevacoin
|
||||
else
|
||||
{
|
||||
return hex2bin(
|
||||
$string
|
||||
$value
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user