Nwidart\Modules\Traits\CanClearModulesCache::clearCache PHP Метод

clearCache() публичный Метод

Clear the modules cache if it is enabled
public clearCache ( )
    public function clearCache()
    {
        if (config('modules.cache.enabled') === true) {
            app('cache')->forget(config('modules.cache.key'));
        }
    }
CanClearModulesCache