update to PHP-8.1
[m6w6/seekat] / lib / API / Call / Cache / Service.php
1 <?php
2
3 namespace seekat\API\Call\Cache;
4
5 use http\Client\Response;
6
7 interface Service {
8 function fetch(string $key, Response &$response = null) : bool;
9 function store(string $key, Response $response) : bool;
10 function del(string $key) : void;
11 function clear() : void;
12 }