Skip to content

Commit 8ba4415

Browse files
authored
Add files via upload
1 parent 7eaafeb commit 8ba4415

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Crypto/Base58.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Exception;
1010

1111
abstract class Base58 {
12-
static public function dec2base(string | int $dec,int $base,string $digits = null) : string {
12+
static public function dec2base(string | int $dec,int $base,? string $digits = null) : string {
1313
if(extension_loaded('bcmath')):
1414
if($base < 2 or $base > 256):
1515
throw new InvalidArgumentException('Invalid base argument , The base must be between 2 and 256');
@@ -42,13 +42,13 @@ static public function encodeAddress(string $string,int $prefix = 0,bool $compre
4242
$checksum = $string.substr($hash,0,4);
4343
return self::encode(self::bin2bc($checksum));
4444
}
45-
static public function base2dec(string $value,int $base,$digits = false) : string | int {
45+
static public function base2dec(string $value,int $base,? string $digits = null) : string | int {
4646
if(extension_loaded('bcmath')):
4747
if($base < 2 or $base > 256):
4848
throw new InvalidArgumentException('Invalid base argument , The base must be between 2 and 256');
4949
endif;
5050
if($base < 37) $value = strtolower($value);
51-
if($digits === false) $digits = self::digits($base);
51+
if(is_null($digits)) $digits = self::digits($base);
5252
$size = strlen($value);
5353
$dec = strval(0);
5454
for($loop = 0;$loop < $size;$loop++):

0 commit comments

Comments
 (0)