lt() public method

Specify $lt criteria for the current field.
See also: Builder::lte()
See also: http://docs.mongodb.org/manual/reference/operator/lte/
public lt ( mixed $value )
$value mixed
Exemplo n.º 1
0
 /**
  * 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;
 }
Exemplo n.º 2
0
 /**
  * Specify $lt criteria for the current field.
  *
  * @see Expr::lte()
  * @see http://docs.mongodb.org/manual/reference/operator/lte/
  * @param mixed $value
  * @return $this
  */
 public function lt($value)
 {
     $this->query->lt($value);
     return $this;
 }