示例#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;
 }