Passed
Push — develop ( fc36e2...f9edd1 )
by nguereza
01:43
created
src/Iterator/CsvFileIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         return !empty(
112 112
             array_filter(
113 113
                 $current,
114
-                function ($cell) {
114
+                function($cell) {
115 115
                     return $cell !== null;
116 116
                 }
117 117
             )
Please login to merge, or discard this patch.
src/Etl.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
             }
349 349
         }
350 350
 
351
-        return static function () use ($output) {
351
+        return static function() use ($output) {
352 352
             foreach ($output as [$key, $value]) {
353 353
                 yield $key => $value;
354 354
             }
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
      */
468 468
     protected function defaultTransformer(): callable
469 469
     {
470
-        return function ($item, $key): Generator {
470
+        return function($item, $key): Generator {
471 471
             yield $key => $item;
472 472
         };
473 473
     }
Please login to merge, or discard this patch.