Completed
Push — master ( fa4f9a...8a9929 )
by Beniamin
03:39
created
src/Parser/QueryClausesParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             return '';
64 64
         }
65 65
 
66
-        $rootTableDeclaration = implode(', ', array_map(function (AbstractTable $table) {
66
+        $rootTableDeclaration = implode(', ', array_map(function(AbstractTable $table) {
67 67
             return $this->parseTableDeclaration($table);
68 68
         }, $rootTables));
69 69
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             return '';
82 82
         }
83 83
 
84
-        return 'FROM ' . implode(', ', array_map(function (AbstractTable $table) {
84
+        return 'FROM ' . implode(', ', array_map(function(AbstractTable $table) {
85 85
             return $this->parseTableDeclaration($table);
86 86
         }, $rootTables));
87 87
     }
Please login to merge, or discard this patch.