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

12 lines
217 B
PHP

<?php
require_once(__DIR__ . '/CacheInterface.php');
abstract class CacheAbstract implements CacheInterface {
protected $param;
public function prepare(array $param){
$this->param = $param;
return $this;
}
}