Doctrine\MongoDB\Query\Expr::gte PHP Метод

gte() публичный Метод

Specify $gte criteria for the current field.
См. также: Builder::gte()
См. также: http://docs.mongodb.org/manual/reference/operator/gte/
public gte ( mixed $value )
$value mixed
    public function gte($value)
    {
        return $this->operator('$gte', $value);
    }

Usage Example

Пример #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;
 }
All Usage Examples Of Doctrine\MongoDB\Query\Expr::gte