gte() public method

Specify $gte criteria for the current field.
See also: Builder::gte()
See also: http://docs.mongodb.org/manual/reference/operator/gte/
public gte ( mixed $value )
$value mixed
コード例 #1
0
ファイル: Builder.php プロジェクト: Wizkunde/mongodb
 /**
  * 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;
 }
コード例 #2
0
ファイル: Match.php プロジェクト: doctrine/mongodb
 /**
  * Specify $gte criteria for the current field.
  *
  * @see Expr::gte()
  * @see http://docs.mongodb.org/manual/reference/operator/gte/
  * @param mixed $value
  * @return $this
  */
 public function gte($value)
 {
     $this->query->gte($value);
     return $this;
 }