LMongo\Query\Builder::norWhereLte PHP Method

norWhereLte() public method

Add an "$lte comparison operation" clause to logical $nor operation.
public norWhereLte ( string $column, integer $value ) : LMongo\Query\Builder
$column string
$value integer
return LMongo\Query\Builder
    public function norWhereLte($column, $value)
    {
        return $this->where($column, array('$lte' => $value), '$nor');
    }
Builder