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

gt() public method

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