forkbb/app/Core/Cache.php
Visman ed26a085b6 rev.20 Delete Core\Cache
FileCache used without a wrapper
2020-10-05 19:53:38 +07:00

63 lines
1.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace ForkBB\Core;
use Psr\SimpleCache\CacheInterface;
/**
* Класс не используется с rev.20
* Оставлен для возможности обновления с предыдущих ревизий
*/
class Cache
{
/**
* Провайдер доступа к кэшу
* @var ProviderInterfaces
*/
protected $provider;
public function __construct(CacheInterface $provider)
{
$this->provider = $provider;
}
/**
* Получение данных из кэша по ключу
*/
public function get(string $key, $default = null) /* : mixed */
{
return $this->provider->get($key, $default);
}
/**
* Установка данных в кэш по ключу
*/
public function set(string $key, /* mixed */ $value, int $ttl = null): bool
{
return $this->provider->set($key, $value, $ttl);
}
/**
* Удаление данных по ключу
*/
public function delete(string $key): bool
{
return $this->provider->delete($key);
}
/**
* Очистка кэша
*/
public function clear(): bool
{
return $this->provider->clear();
}
/**
* Проверка наличия ключа
*/
public function has(string $key): bool
{
return $this->provider->has($key);
}
}