@@ -259,7 +259,7 @@ discard block |
||
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 |
||
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 | } |