blob: eb0f1b9f89cd7871af1dfdfd0423cacab141424b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
use Doctrine\ORM\Query\SqlWalker;
class GroupByClause extends Node
{
/** @param mixed[] $groupByItems */
public function __construct(public array $groupByItems)
{
}
public function dispatch(SqlWalker $walker): string
{
return $walker->walkGroupByClause($this);
}
}
|