예제 #1
0
파일: Group.php 프로젝트: cosmow/riak
 /**
  * Returns the highest value that results from applying an expression to
  * each document in a group of documents that share the same group by key.
  *
  * @see Expr::max
  * @param mixed|Expr $expression
  * @return Operator
  */
 public function max($expression)
 {
     $this->expr->max($expression);
     return $this;
 }