Doctrine\MongoDB\Aggregation\Stage\Group::min PHP Méthode

min() public méthode

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 also: http://docs.mongodb.org/manual/reference/operator/aggregation/min/
See also: Expr::min
public min ( mixed | Expr $expression ) : Operator
$expression mixed | Doctrine\MongoDB\Aggregation\Expr
Résultat Operator
    public function min($expression)
    {
        $this->expr->min($expression);
        return $this;
    }