| Current Path : /opt/nginxhttpd_/vendor/doctrine/orm/src/Query/AST/ |
| Current File : //opt/nginxhttpd_/vendor/doctrine/orm/src/Query/AST/GroupByClause.php |
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
class GroupByClause extends Node
{
/** @var mixed[] */
public $groupByItems = [];
/** @param mixed[] $groupByItems */
public function __construct(array $groupByItems)
{
$this->groupByItems = $groupByItems;
}
/**
* {@inheritDoc}
*/
public function dispatch($sqlWalker)
{
return $sqlWalker->walkGroupByClause($this);
}
}