Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
cache
/
Tests
/
Fixtures
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/cache/Tests/Fixtures/ArrayCache.php
<?php namespace Symfony\Component\Cache\Tests\Fixtures; use Doctrine\Common\Cache\CacheProvider; class ArrayCache extends CacheProvider { private $data = []; protected function doFetch($id) { return $this->doContains($id) ? $this->data[$id][0] : false; } protected function doContains($id) { if (!isset($this->data[$id])) { return false; } $expiry = $this->data[$id][1]; return !$expiry || microtime(true) < $expiry || !$this->doDelete($id); } protected function doSave($id, $data, $lifeTime = 0) { $this->data[$id] = [$data, $lifeTime ? microtime(true) + $lifeTime : false]; return true; } protected function doDelete($id) { unset($this->data[$id]); return true; } protected function doFlush() { $this->data = []; return true; } protected function doGetStats() { return null; } }