Passed
Pull Request — master (#43)
by
unknown
04:27 queued 02:21
created
ecs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use Symplify\EasyCodingStandard\Config\ECSConfig;
6 6
 use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
7 7
 
8
-return static function (ECSConfig $ecsConfig): void {
9
-    $ecsConfig->paths([__DIR__ . '/src', __DIR__ . '/tests',]);
8
+return static function(ECSConfig $ecsConfig): void {
9
+    $ecsConfig->paths([__DIR__ . '/src', __DIR__ . '/tests', ]);
10 10
     $ecsConfig->sets([
11 11
         SetList::PSR_12,
12 12
         SetList::CLEAN_CODE,
Please login to merge, or discard this patch.
src/BCMathExtended/BC.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
     {
486 486
         return static::decBaseHelper(
487 487
             $base,
488
-            static function (int $base) use ($number) {
488
+            static function(int $base) use ($number) {
489 489
                 $value = '';
490 490
                 if ($number === '0') {
491 491
                     return chr((int)$number);
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
     {
558 558
         return static::decBaseHelper(
559 559
             $base,
560
-            static function (int $base) use ($binary) {
560
+            static function(int $base) use ($binary) {
561 561
                 $size = strlen($binary);
562 562
                 $return = '0';
563 563
                 for ($i = 0; $i < $size; ++$i) {
Please login to merge, or discard this patch.