Example #1
0
 /**
  * Specify $gt criteria for the current field.
  *
  * @see Expr::gt()
  * @see http://docs.mongodb.org/manual/reference/operator/gt/
  * @param mixed $value
  * @return self
  */
 public function gt($value)
 {
     $this->expr->gt($value);
     return $this;
 }
Example #2
0
 /**
  * Specify $gt criteria for the current field.
  *
  * @see Expr::gt()
  * @see http://docs.mongodb.org/manual/reference/operator/gt/
  * @param mixed $value
  * @return self
  */
 public function gt($value)
 {
     $this->query->gt($value);
     return $this;
 }