Piwik\Plugins\Marketplace\API::deleteLicenseKey PHP Method

deleteLicenseKey() public method

Deletes an existing license key if one is set.
public deleteLicenseKey ( ) : boolean
return boolean
    public function deleteLicenseKey()
    {
        Piwik::checkUserHasSuperUserAccess();
        $this->setLicenseKey(null);
        return true;
    }