0b801552f8cdb2c3f193244956ca81f69c6be764
[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 {
9 function fetch(string $key, Response &$response = null) : bool;
10 function store(string $key, Response $response) : bool;
11 function clear();
12 }