diff options
author | 2016-10-07 22:33:45 +0200 | |
---|---|---|
committer | 2016-10-07 22:33:45 +0200 | |
commit | 9ac678aac50845674b8eb836e232fa236a2d8ca5 (patch) | |
tree | ce926655a8c25e478bca94ad0de28c404de974b3 /lib/CacheInterface.php | |
parent | 51ff8de3464c6497fbe5a9352b63f675d58c5f0b (diff) | |
download | rss-bridge-9ac678aac50845674b8eb836e232fa236a2d8ca5.tar.gz rss-bridge-9ac678aac50845674b8eb836e232fa236a2d8ca5.tar.zst rss-bridge-9ac678aac50845674b8eb836e232fa236a2d8ca5.zip |
[Cache] Move 'purge' function to implementations
The purge function is cache specific and thus belongs
to the specific implementation.
Diffstat (limited to 'lib/CacheInterface.php')
-rw-r--r-- | lib/CacheInterface.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CacheInterface.php b/lib/CacheInterface.php index 4c59df30..ab1066e3 100644 --- a/lib/CacheInterface.php +++ b/lib/CacheInterface.php @@ -3,4 +3,5 @@ interface CacheInterface { public function loadData(); public function saveData($datas); public function getTime(); + public function purgeCache(); } |