Completed
Push — master ( 1cbd4f...6f70d1 )
by Beniamin
07:58
created
src/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function getRootTables()
261 261
     {
262
-        return new ExpressionCollection(array_filter($this->getTables(), function (AbstractTable $table) {
262
+        return new ExpressionCollection(array_filter($this->getTables(), function(AbstractTable $table) {
263 263
             return $table->isRoot();
264 264
         }), ', ');
265 265
     }
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
      */
270 270
     public function getJoinTables()
271 271
     {
272
-        return new ExpressionCollection(array_filter($this->getTables(), function (AbstractTable $table) {
272
+        return new ExpressionCollection(array_filter($this->getTables(), function(AbstractTable $table) {
273 273
             return $table->isJoin();
274 274
         }), ' ');
275 275
     }
Please login to merge, or discard this patch.