Adldap\Models\User::isEnabled PHP Method

isEnabled() public method

Returns if the user is enabled.
public isEnabled ( ) : boolean
return boolean
    public function isEnabled()
    {
        return $this->getUserAccountControl() === null ? false : !$this->isDisabled();
    }