PHP8
[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);
11 function clear();
12 }