1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-04-14 04:35:50 +03:00
rss-bridge/lib/CacheInterface.php
Dag caac7f572c
refacor: improve cache interface ()
* fix: proper typehint on setScope

* refactor: type hint setKey()

* typehint
2023-07-06 15:10:30 +02:00

16 lines
302 B
PHP

<?php
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;
}