Infusionsoft_SmartCache::expireCache PHP Method

expireCache() public method

public expireCache ( )
    public function expireCache()
    {
        if (self::$staticExternalCacheClass == null) {
            unlink($this->getCacheFileName());
        } else {
            $staticClass = self::$staticExternalCacheClass;
            $staticClass::delete($this->getCacheFileName());
        }
    }