PHP8
[m6w6/seekat] / lib / API / Call / Cache / Service.php
index 0b801552f8cdb2c3f193244956ca81f69c6be764..31db9e99d7b3c04095218e46f545d3eca7ad241b 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 del(string $key);
        function clear();
 }