Uname:
Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software:
Apache
PHP version:
8.0.30 [ PHP INFO ] PHP os:
Linux
Server Ip:
145.239.37.162
Your Ip:
216.73.216.190
User:
dreampi (1009562) | Group:
users (100)
Safe Mode:
OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
namespace MailPoet\Doctrine;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Psr\Cache\CacheItemInterface;
use MailPoetVendor\Psr\Cache\CacheItemPoolInterface;
class PSRArrayCache implements CacheItemPoolInterface {
/** @var mixed[] */
private $cache = [];
/**
* @inheritDoc
*/
public function getItem($key) {
if (!is_string($key)) {
throw new PSRCacheInvalidArgumentException('Invalid key');
}
if (!$this->hasItem($key)) {
return new PSRCacheItem($key, false);
}
return new PSRCacheItem($key, $this->cache[$key]);
}
public function getItems(array $keys = []) {
return array_map([$this, 'getItem'], $keys);
}
/**
* @inheritDoc
*/
public function hasItem($key) {
return array_key_exists($key, $this->cache);
}
/**
* @inheritDoc
*/
public function clear() {
$this->cache = [];
return true;
}
/**
* @inheritDoc
*/
public function deleteItem($key) {
if (!is_string($key)) {
throw new PSRCacheInvalidArgumentException('Invalid key');
}
unset($this->cache[$key]);
return true;
}
/**
* @inheritDoc
*/
public function deleteItems(array $keys) {
try {
array_map([$this, 'deleteItem'], $keys);
} catch (PSRCacheInvalidArgumentException $e) {
return false;
}
return true;
}
/**
* @inheritDoc
*/
public function save(CacheItemInterface $item) {
$this->cache[$item->getKey()] = $item->get();
return true;
}
/**
* @inheritDoc
*/
public function saveDeferred(CacheItemInterface $item) {
return $this->save($item);
}
/**
* @inheritDoc
*/
public function commit() {
return true;
}
}