/home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Cache
NameSizeModeActions
BatchCache.php38990644editdlrm
BatchCacheDeprecated.php37450644editdlrm
CacheManager.php21250644editdlrm
MemoryCache.php24310644editdlrm
MemoryCacheDeprecated.php23170644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/maatwebsite/excel/src/Cache/CacheManager.php (2125B)
createIlluminateDriver(), $this->createMemoryDriver(), config('excel.cache.ttl') ); } return new BatchCache( $this->createIlluminateDriver(), $this->createMemoryDriver(), config('excel.cache.ttl') ); } /** * @return CacheInterface */ public function createIlluminateDriver(): CacheInterface { return Cache::driver( config('excel.cache.illuminate.store') ); } public function flush() { $this->driver()->clear(); } public function isInMemory(): bool { return $this->getDefaultDriver() === self::DRIVER_MEMORY; } }