Devise\Support\Config\FileManager::clearCache PHP Метод

clearCache() приватный Метод

Deletes cache in PHP caching module(s)
private clearCache ( ) : boolean
Результат boolean
    private function clearCache()
    {
        // Prevent caching if opcache is present
        if (function_exists('opcache_reset')) {
            opcache_reset();
            return true;
        }
        return false;
    }