Doctrine\MongoDB\Aggregation\Stage\Operator::log10 PHP Method

log10() public method

The expression can be any valid expression as long as it resolves to a non-negative number. The expression can be any valid expression as long as it resolves to a positive number greater than 1.
See also: https://docs.mongodb.org/manual/reference/operator/aggregation/log/
See also: Expr::log10
Since: 1.3
public log10 ( mixed | Expr $number )
$number mixed | Doctrine\MongoDB\Aggregation\Expr
    public function log10($number)
    {
        $this->expr->log10($number);
        return $this;
    }