Test Setup Failed
Branch master (7d777f)
by Hector Luis
01:59
created
Category
src/Infrastructure/Driver/Iterator/SimpleIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         if ($begin < $this->content->key()) {
89 89
             // Last row not inclusive
90 90
             $range = range($begin, $end - 1);
91
-            array_walk($range, function ($i) use (&$result) {
91
+            array_walk($range, function($i) use (&$result) {
92 92
                 if (isset($this->cachedRows[$i])) {
93 93
                     $result[$i] = $this->cachedRows[$i];
94 94
                 }
Please login to merge, or discard this patch.
src/Infrastructure/Driver/Traits/FileInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     private function setHeader(): ReferencedSignature
30 30
     {
31 31
         if ($this->hasHeader()) {
32
-            $this->header = $this->isContentIterator() ? (function () {
32
+            $this->header = $this->isContentIterator() ? (function() {
33 33
                 return $this->content->current();
34 34
             })() : array_shift($this->getContent());
35 35
         }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function getHeader()
44 44
     {
45
-        return !empty($this->header) ? $this->header : (function () {
45
+        return !empty($this->header) ? $this->header : (function() {
46 46
             $this->setHeader();
47 47
 
48 48
             return $this->header;
Please login to merge, or discard this patch.