Piwik\Plugins\Marketplace\Plugins\InvalidLicenses::clearCache PHP Method

clearCache() public method

public clearCache ( )
    public function clearCache()
    {
        $this->cache->delete($this->cacheKey);
    }

Usage Example

Ejemplo n.º 1
0
Archivo: API.php Proyecto: piwik/piwik
 private function setLicenseKey($licenseKey)
 {
     $key = new LicenseKey();
     $key->set($licenseKey);
     $this->marketplaceClient->clearAllCacheEntries();
     $this->expired->clearCache();
 }