Completed
Branch 3.0.0 (a8a3e4)
by Joao
03:24
created
src/Dataset/SocketIterator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
         }
42 42
 
43 43
         $this->rows = array();
44
-        $rowsaux = preg_split("/" . $this->rowsep . "/", $linha);
44
+        $rowsaux = preg_split("/".$this->rowsep."/", $linha);
45 45
         sort($rowsaux);
46 46
         foreach ($rowsaux as $value) {
47
-            $colsaux = preg_split("/" . $this->colsep . "/", $value);
47
+            $colsaux = preg_split("/".$this->colsep."/", $value);
48 48
             if (count($colsaux) == count($fieldnames)) {
49 49
                 $this->rows[] = $value;
50 50
             }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function moveNext()
79 79
     {
80
-        $cols = preg_split("/" . $this->colsep . "/", $this->rows[$this->current]);
80
+        $cols = preg_split("/".$this->colsep."/", $this->rows[$this->current]);
81 81
         $this->current++;
82 82
 
83 83
         $sr = new SingleRow();
Please login to merge, or discard this patch.