Passed
Push — master ( d07e18...834c41 )
by kacper
01:45
created
src/BCMathExtended/BC.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
     public static function dec2bin(string $number, int $base = self::MAX_BASE): string
549 549
     {
550 550
         return self::decBaseHelper(
551
-            $base, static function (int $base) use ($number) {
551
+            $base, static function(int $base) use ($number) {
552 552
             $value = '';
553 553
             if ('0' === $number) {
554 554
                 return chr((int)$number);
@@ -619,7 +619,7 @@  discard block
 block discarded – undo
619 619
     public static function bin2dec(string $binary, int $base = self::MAX_BASE): string
620 620
     {
621 621
         return self::decBaseHelper(
622
-            $base, static function (int $base) use ($binary) {
622
+            $base, static function(int $base) use ($binary) {
623 623
             $size = strlen($binary);
624 624
             $return = '0';
625 625
             for ($i = 0; $i < $size; ++$i) {
Please login to merge, or discard this patch.