2009-01-19 21:40:12 +03:00
|
|
|
<?php
|
2009-07-19 20:18:51 +04:00
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
2012-05-26 16:37:00 +04:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2009-07-19 20:18:51 +04:00
|
|
|
* <http://www.doctrine-project.org>.
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
2012-12-13 15:52:19 +04:00
|
|
|
* Description of AggregateExpression.
|
2009-01-19 21:40:12 +03:00
|
|
|
*
|
2009-08-06 19:48:41 +04:00
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-01-19 21:40:12 +03:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class AggregateExpression extends Node
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2009-08-06 19:35:14 +04:00
|
|
|
public $functionName;
|
2012-12-13 15:52:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var PathExpression|SimpleArithmeticExpression
|
|
|
|
*/
|
2009-08-06 19:35:14 +04:00
|
|
|
public $pathExpression;
|
2009-01-19 21:40:12 +03:00
|
|
|
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* Some aggregate expressions support distinct, eg COUNT.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $isDistinct = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $functionName
|
|
|
|
* @param PathExpression|SimpleArithmeticExpression $pathExpression
|
|
|
|
* @param bool $isDistinct
|
|
|
|
*/
|
2009-01-19 21:40:12 +03:00
|
|
|
public function __construct($functionName, $pathExpression, $isDistinct)
|
|
|
|
{
|
2009-08-06 19:35:14 +04:00
|
|
|
$this->functionName = $functionName;
|
|
|
|
$this->pathExpression = $pathExpression;
|
|
|
|
$this->isDistinct = $isDistinct;
|
2009-01-19 21:40:12 +03:00
|
|
|
}
|
2009-03-23 20:39:33 +03:00
|
|
|
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-08-11 14:51:38 +04:00
|
|
|
public function dispatch($walker)
|
2009-03-23 20:39:33 +03:00
|
|
|
{
|
2009-08-11 14:51:38 +04:00
|
|
|
return $walker->walkAggregateExpression($this);
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|
2012-05-26 16:37:00 +04:00
|
|
|
}
|