/** * Compares two values and returns: * true when the first value is greater than the second value. * false when the first value is less than or equivalent to the second value. * * @see http://docs.mongodb.org/manual/reference/operator/aggregation/gt/ * @see Expr::gt * @param mixed|Expr $expression1 * @param mixed|Expr $expression2 * @return self */ public function gt($expression1, $expression2) { $this->expr->gt($expression1, $expression2); return $this; }