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