Completed
Pull Request — master (#4)
by yuuki
03:34
created
src/QueryResult.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         if (!count($this->data)) {
137 137
             yield;
138 138
         }
139
-        $columns = array_map(function (Column $item) {
139
+        $columns = array_map(function(Column $item) {
140 140
             return $item->getName();
141 141
         }, $this->getColumns());
142 142
         foreach ($this->data as $data) {
Please login to merge, or discard this patch.