Example #1
0
 /**
  * @param $statement
  *
  * @return $this
  */
 public function groupBy($statement)
 {
     $this->groupClause->groupBy($statement);
     return $this;
 }
Example #2
0
 /**
  * @param $columns
  *
  * @return $this
  */
 public function groupBy($columns)
 {
     $this->groupClause->groupBy($columns);
     return $this;
 }