mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-06-27 07:29:07 +02:00
[lib] Split Bridge/Cache/Format into one file per class
The files have grown to a size where it is necessary to search for a class in a file. This commit splits the content into one file per class. RSS-Bridge will require implementations and the implementations will require (once) the interfaces.
This commit is contained in:
parent
d98bb25de6
commit
298dc49c67
12 changed files with 796 additions and 793 deletions
11
lib/CacheAbstract.php
Normal file
11
lib/CacheAbstract.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
require_once(__DIR__ . '/CacheInterface.php');
|
||||
abstract class CacheAbstract implements CacheInterface{
|
||||
protected $param;
|
||||
|
||||
public function prepare(array $param){
|
||||
$this->param = $param;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue