1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-04-01 22:35:21 +03:00
rss-bridge/lib/CacheInterface.php
logmanoriginal 9ac678aac5 [Cache] Move 'purge' function to implementations
The purge function is cache specific and thus belongs
to the specific implementation.
2016-10-07 22:33:45 +02:00

7 lines
158 B
PHP

<?php
interface CacheInterface {
public function loadData();
public function saveData($datas);
public function getTime();
public function purgeCache();
}