Exemplo n.º 1
0
 /**
  * Add a "having" clause to the query.
  *
  * @param string $column
  * @param string $operator
  * @param string $value
  * @param string $boolean
  * @return $this 
  * @static 
  */
 public static function having($column, $operator = null, $value = null, $boolean = 'and')
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::having($column, $operator, $value, $boolean);
 }