deprecate DiskCache->touch()

This commit is contained in:
Andrew Dolgov
2022-11-24 08:16:56 +03:00
parent 9732d8fc9f
commit 3180b35807
5 changed files with 7 additions and 12 deletions

View File

@@ -20,7 +20,6 @@ interface Cache_Adapter {
* @return int|false Bytes written or false if an error occurred.
*/
public function put(string $filename, $data);
public function touch(string $filename): bool;
public function get(string $filename): ?string;
public function get_full_path(string $filename): string;
/**