update to PHP-8.1
[m6w6/seekat] / lib / API / Call / Cache / Service.php
index 0b801552f8cdb2c3f193244956ca81f69c6be764..57b92378faa9bfaf8746c26557087b19b271ddab 100644 (file)
@@ -4,9 +4,9 @@ namespace seekat\API\Call\Cache;
 
 use http\Client\Response;
 
-interface Service
-{
+interface Service {
        function fetch(string $key, Response &$response = null) : bool;
        function store(string $key, Response $response) : bool;
-       function clear();
+       function del(string $key) : void;
+       function clear() : void;
 }