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