Completed
Push — releases/v0.2.1 ( d4d983...705e26 )
by Luke
03:00
created
src/CSVelte/IO/BufferStream.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,9 @@
 block discarded – undo
138 138
     public function readChunk($start = null, $length = null)
139 139
     {
140 140
         //dd($this->buffer, false);
141
-        if ($this->buffer === false) return false;
141
+        if ($this->buffer === false) {
142
+            return false;
143
+        }
142 144
         $top = substr($this->buffer, 0, $start);
143 145
         $data = substr($this->buffer, $start, $length);
144 146
         $bottom = substr($this->buffer, $start + $length);
Please login to merge, or discard this patch.
src/CSVelte/Table/AbstractRow.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,9 @@
 block discarded – undo
152 152
     public function next()
153 153
     {
154 154
         $this->position++;
155
-        if ($this->valid()) return $this->current();
155
+        if ($this->valid()) {
156
+            return $this->current();
157
+        }
156 158
     }
157 159
 
158 160
     /**
Please login to merge, or discard this patch.