41 lines
888 B
PHP
41 lines
888 B
PHP
<?php
|
|
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
/**
|
|
* Description of AggregateExpression
|
|
*
|
|
* @author robo
|
|
*/
|
|
class AggregateExpression extends Node
|
|
{
|
|
private $_functionName;
|
|
private $_pathExpression;
|
|
private $_isDistinct = false; // Some aggregate expressions support distinct, eg COUNT
|
|
|
|
public function __construct($functionName, $pathExpression, $isDistinct)
|
|
{
|
|
$this->_functionName = $functionName;
|
|
$this->_pathExpression = $pathExpression;
|
|
$this->_isDistinct = $isDistinct;
|
|
}
|
|
|
|
public function getPathExpression()
|
|
{
|
|
return $this->_pathExpression;
|
|
}
|
|
|
|
public function isDistinct()
|
|
{
|
|
return $this->_isDistinct;
|
|
}
|
|
|
|
public function getFunctionName()
|
|
{
|
|
return $this->_functionName;
|
|
}
|
|
} |