LdapTools\Query\Builder\FilterBuilder::lt PHP Method

lt() public method

A less-than comparison. Since an actual '<' operator does not exist in LDAP, this is a combination of a greater-than-or-equal-to operator along with a check if the attribute is set/present. This is encapsulated within a logical 'AND' operator.
public lt ( string $attribute, mixed $value ) : bAnd
$attribute string
$value mixed
return LdapTools\Query\Operator\bAnd
    public function lt($attribute, $value)
    {
        return new bAnd(new bNot($this->gte($attribute, $value)), $this->present($attribute));
    }