mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-18 16:19:55 +03:00
11 lines
217 B
PHP
11 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;
|
|
}
|
|
}
|