Passed
Pull Request — master (#28)
by kacper
02:15
created
src/BCMathExtended/BC.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
     public static function dec2bin($number, $base = self::MAX_BASE)
666 666
     {
667 667
         return self::decBaseHelper(
668
-            $base, function ($base) use ($number) {
668
+            $base, function($base) use ($number) {
669 669
             $value = '';
670 670
             if ('0' === $number) {
671 671
                 return chr((int)$number);
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
     public static function bin2dec($binary, $base = self::MAX_BASE)
764 764
     {
765 765
         return self::decBaseHelper(
766
-            $base, function ($base) use ($binary) {
766
+            $base, function($base) use ($binary) {
767 767
             $size = strlen($binary);
768 768
             $return = '0';
769 769
             for ($i = 0; $i < $size; ++$i) {
Please login to merge, or discard this patch.