lte() public method

Specify $lte criteria for the current field.
See also: Builder::lte()
See also: http://docs.mongodb.org/manual/reference/operator/lte/
public lte ( mixed $value )
$value mixed
Beispiel #1
0
 /**
  * Specify $lte criteria for the current field.
  *
  * @see Expr::lte()
  * @see http://docs.mongodb.org/manual/reference/operator/lte/
  * @param mixed $value
  * @return self
  */
 public function lte($value)
 {
     $this->expr->lte($value);
     return $this;
 }
Beispiel #2
0
 /**
  * Specify $lte criteria for the current field.
  *
  * @see Expr::lte()
  * @see http://docs.mongodb.org/manual/reference/operator/lte/
  * @param mixed $value
  * @return $this
  */
 public function lte($value)
 {
     $this->query->lte($value);
     return $this;
 }