mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-29 14:48:52 +03:00
caac7f572c
* fix: proper typehint on setScope * refactor: type hint setKey() * typehint
328 B
328 B
See CacheInterface
.
interface CacheInterface
{
public function setScope(string $scope): void;
public function setKey(array $key): void;
public function loadData();
public function saveData($data): void;
public function getTime(): ?int;
public function purgeCache(int $seconds): void;
}