LdapTools\Query\Builder\ADFilterBuilder::accountNeverExpires PHP Method

accountNeverExpires() public method

Checks for accounts that never expire.
Deprecation: Use the accountExpirationDate schema attribute instead (bool false)
public accountNeverExpires ( ) : bOr
return LdapTools\Query\Operator\bOr
    public function accountNeverExpires()
    {
        return $this->bOr($this->eq(self::ATTR['ACCOUNT_EXPIRES'], '0'), $this->eq(self::ATTR['ACCOUNT_EXPIRES'], '9223372036854775807'));
    }