1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-02-21 01:29:05 +03:00
rss-bridge/lib/CacheInterface.php
logmanoriginal 62eec43980 [core] Apply common indentation
All files are now using tabs for indentation
2016-09-10 20:41:11 +02:00

6 lines
127 B
PHP

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