2009-01-19 21:40:12 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* To change this template, choose Tools | Templates
|
|
|
|
* and open the template in the editor.
|
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
|
|
|
* Description of GroupByClause
|
|
|
|
*
|
|
|
|
* @author robo
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class GroupByClause extends Node
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
|
|
|
private $_groupByItems = array();
|
|
|
|
|
|
|
|
public function __construct(array $groupByItems)
|
|
|
|
{
|
|
|
|
$this->_groupByItems = $groupByItems;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getGroupByItems()
|
|
|
|
{
|
|
|
|
return $this->_groupByItems;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|