Exemplo n.º 1
0
 /**
  * Adds the group by expressions to the statement
  * @param array $groupBy Array with database order expressions
  * @return null
  */
 private function addGroupBy(array $groupBy)
 {
     foreach ($groupBy as $group) {
         $this->statement->addGroupBy($group);
     }
 }