Completed
Push — master ( cc1f48...9b2df7 )
by Beniamin
04:10
created
src/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
      */
323 323
     public function getRootTables()
324 324
     {
325
-        return array_filter($this->getTables(), function (AbstractTable $table) {
325
+        return array_filter($this->getTables(), function(AbstractTable $table) {
326 326
             return $table->isRoot();
327 327
         });
328 328
     }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      */
333 333
     public function getJoinTables()
334 334
     {
335
-        return array_filter($this->getTables(), function (AbstractTable $table) {
335
+        return array_filter($this->getTables(), function(AbstractTable $table) {
336 336
             return $table->isJoin();
337 337
         });
338 338
     }
Please login to merge, or discard this patch.
src/Expression/Func/FuncArguments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         }
30 30
 
31 31
         if (is_array($argument)) {
32
-            $this->args +=  $argument;
32
+            $this->args += $argument;
33 33
 
34 34
             return $this;
35 35
         }
Please login to merge, or discard this patch.