Ejemplo n.º 1
0
 /**
  * @param $statement
  *
  * @return $this
  */
 public function groupBy($statement)
 {
     $this->groupClause->groupBy($statement);
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * @param $columns
  *
  * @return $this
  */
 public function groupBy($columns)
 {
     $this->groupClause->groupBy($columns);
     return $this;
 }