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

accountExpires() public method

Checks for accounts that are set to expire at a certain date.
Deprecation: Use the accountExpirationDate schema attribute instead (bool true)
public accountExpires ( ) : bAnd
return LdapTools\Query\Operator\bAnd
    public function accountExpires()
    {
        return $this->bAnd($this->gte(self::ATTR['ACCOUNT_EXPIRES'], '1'), $this->lte(self::ATTR['ACCOUNT_EXPIRES'], '9223372036854775806'));
    }