コード例 #1
0
ファイル: Builder.php プロジェクト: cosmow/riak
 /**
  * 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 プロジェクト: cosmow/riak
 /**
  * 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;
 }