38 lines
759 B
PHP
38 lines
759 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
/**
|
|
* SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}
|
|
*
|
|
* @link www.doctrine-project.org
|
|
*/
|
|
class SelectClause extends Node
|
|
{
|
|
/** @var bool */
|
|
public $isDistinct;
|
|
|
|
/** @var mixed[] */
|
|
public $selectExpressions = [];
|
|
|
|
/**
|
|
* @param mixed[] $selectExpressions
|
|
* @param bool $isDistinct
|
|
*/
|
|
public function __construct(array $selectExpressions, $isDistinct)
|
|
{
|
|
$this->isDistinct = $isDistinct;
|
|
$this->selectExpressions = $selectExpressions;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function dispatch($sqlWalker)
|
|
{
|
|
return $sqlWalker->walkSelectClause($this);
|
|
}
|
|
}
|