예제 #1
0
파일: Builder.php 프로젝트: cosmow/riak
 /**
  * Specify $lt criteria for the current field.
  *
  * @see Expr::lte()
  * @see http://docs.mongodb.org/manual/reference/operator/lte/
  * @param mixed $value
  * @return self
  */
 public function lt($value)
 {
     $this->expr->lt($value);
     return $this;
 }
예제 #2
0
파일: Match.php 프로젝트: cosmow/riak
 /**
  * Specify $lt criteria for the current field.
  *
  * @see Expr::lte()
  * @see http://docs.mongodb.org/manual/reference/operator/lte/
  * @param mixed $value
  * @return self
  */
 public function lt($value)
 {
     $this->query->lt($value);
     return $this;
 }