diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/GroupByClause.php')
-rw-r--r-- | vendor/doctrine/orm/src/Query/AST/GroupByClause.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/GroupByClause.php b/vendor/doctrine/orm/src/Query/AST/GroupByClause.php new file mode 100644 index 0000000..eb0f1b9 --- /dev/null +++ b/vendor/doctrine/orm/src/Query/AST/GroupByClause.php | |||
@@ -0,0 +1,20 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Query\AST; | ||
6 | |||
7 | use Doctrine\ORM\Query\SqlWalker; | ||
8 | |||
9 | class GroupByClause extends Node | ||
10 | { | ||
11 | /** @param mixed[] $groupByItems */ | ||
12 | public function __construct(public array $groupByItems) | ||
13 | { | ||
14 | } | ||
15 | |||
16 | public function dispatch(SqlWalker $walker): string | ||
17 | { | ||
18 | return $walker->walkGroupByClause($this); | ||
19 | } | ||
20 | } | ||