mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 19:36:52 +03:00
62eec43980
All files are now using tabs for indentation
6 lines
127 B
PHP
6 lines
127 B
PHP
<?php
|
|
interface CacheInterface {
|
|
public function loadData();
|
|
public function saveData($datas);
|
|
public function getTime();
|
|
}
|