mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 10:05:32 +03:00
9ac678aac5
The purge function is cache specific and thus belongs to the specific implementation.
7 lines
158 B
PHP
7 lines
158 B
PHP
<?php
|
|
interface CacheInterface {
|
|
public function loadData();
|
|
public function saveData($datas);
|
|
public function getTime();
|
|
public function purgeCache();
|
|
}
|