Passed
Pull Request — master (#12)
by Joao
01:39
created
src/RowOutput.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $rowParsed = $row->toArray();
44 44
         foreach ($rowParsed as $key => $value) {
45
-            $rowParsed['{' . $key . '}'] = $value;
45
+            $rowParsed['{'.$key.'}'] = $value;
46 46
             unset($rowParsed[$key]);
47 47
         }
48 48
         $rowParsed['{.}'] = $field;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function addFormat($field, $pattern)
65 65
     {
66
-        $this->fieldList[$field] = [ self::FORMAT,  $pattern ];
66
+        $this->fieldList[$field] = [self::FORMAT, $pattern];
67 67
         return $this;
68 68
     }
69 69
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function addCustomFormat($field, Closure $closure)
78 78
     {
79
-        $this->fieldList[$field] = [ self::CUSTOM, $closure ];
79
+        $this->fieldList[$field] = [self::CUSTOM, $closure];
80 80
         return $this;
81 81
     }
82 82
 }
83 83
\ No newline at end of file
Please login to merge, or discard this patch.