@@ -18,7 +18,7 @@ |
||
18 | 18 | private $args = []; |
19 | 19 | |
20 | 20 | /** |
21 | - * @param $argument |
|
21 | + * @param ExpressionInterface $argument |
|
22 | 22 | * |
23 | 23 | * @return $this |
24 | 24 | */ |
@@ -322,7 +322,7 @@ discard block |
||
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 |
||
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 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | /** |
105 | 105 | * @param string $connector |
106 | - * @param mixed $expression |
|
106 | + * @param ExpressionInterface $expression |
|
107 | 107 | * |
108 | 108 | * @return ExprBuilder |
109 | 109 | */ |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | } |
400 | 400 | |
401 | 401 | /** |
402 | - * @param mixed $expression |
|
402 | + * @param string $expression |
|
403 | 403 | * |
404 | 404 | * @return ExprBuilder |
405 | 405 | */ |