![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/vendor/illuminate/filesystem/ |
<?php namespace Illuminate\Filesystem; use Illuminate\Contracts\Cache\Repository; use League\Flysystem\Cached\Storage\AbstractCache; class Cache extends AbstractCache { /** * The cache repository implementation. * * @var \Illuminate\Contracts\Cache\Repository */ protected $repository; /** * The cache key. * * @var string */ protected $key; /** * The cache expiration time in seconds. * * @var int|null */ protected $expire; /** * Create a new cache instance. * * @param \Illuminate\Contracts\Cache\Repository $repository * @param string $key * @param int|null $expire */ public function __construct(Repository $repository, $key = 'flysystem', $expire = null) { $this->key = $key; $this->expire = $expire; $this->repository = $repository; } /** * Load the cache. * * @return void */ public function load() { $contents = $this->repository->get($this->key); if (! is_null($contents)) { $this->setFromStorage($contents); } } /** * Persist the cache. * * @return void */ public function save() { $contents = $this->getForStorage(); $this->repository->put($this->key, $contents, $this->expire); } }