mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-06-26 15:18:40 +02:00
12 lines
237 B
PHP
12 lines
237 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;
|
||
|
}
|
||
|
}
|