X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fseekat;a=blobdiff_plain;f=lib%2FAPI%2FCall%2FCache%2FService.php;h=57b92378faa9bfaf8746c26557087b19b271ddab;hp=31db9e99d7b3c04095218e46f545d3eca7ad241b;hb=654d736df2c46ec2520f73e9089d06a44f2b9c50;hpb=2121556150be871684b5046af7cf250b8219128d diff --git a/lib/API/Call/Cache/Service.php b/lib/API/Call/Cache/Service.php index 31db9e9..57b9237 100644 --- a/lib/API/Call/Cache/Service.php +++ b/lib/API/Call/Cache/Service.php @@ -7,6 +7,6 @@ use http\Client\Response; interface Service { function fetch(string $key, Response &$response = null) : bool; function store(string $key, Response $response) : bool; - function del(string $key); - function clear(); + function del(string $key) : void; + function clear() : void; }