Adldap\Models\User::isActive PHP Method

isActive() public method

Return true / false if AD User is active (enabled & not expired).
public isActive ( ) : boolean
return boolean
    public function isActive()
    {
        return $this->isEnabled() && !$this->isExpired();
    }