X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fseekat;a=blobdiff_plain;f=lib%2FAPI%2FCall%2FCache%2FService.php;h=57b92378faa9bfaf8746c26557087b19b271ddab;hp=0b801552f8cdb2c3f193244956ca81f69c6be764;hb=654d736df2c46ec2520f73e9089d06a44f2b9c50;hpb=2451d97f1cb7b97e445b4dd839835b8673a4d0fc diff --git a/lib/API/Call/Cache/Service.php b/lib/API/Call/Cache/Service.php index 0b80155..57b9237 100644 --- a/lib/API/Call/Cache/Service.php +++ b/lib/API/Call/Cache/Service.php @@ -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; }