/home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Cache
Edit: /home/techb158/immovalet.com/vendor/maatwebsite/excel/src/Cache/CacheManager.php (1492B)
createIlluminateDriver(),
$this->createMemoryDriver()
);
}
/**
* @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;
}
}