BookStack\Services\SettingService::clearFromCache PHP Method

clearFromCache() protected method

Clear an item from the cache completely.
protected clearFromCache ( $key )
$key
    protected function clearFromCache($key)
    {
        $cacheKey = $this->cachePrefix . $key;
        $this->cache->forget($cacheKey);
    }