blob: 98608b259affe2ffa9a043f6f2985c9bc5a9aa06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
require_once(__DIR__ . '/CacheInterface.php');
abstract class CacheAbstract implements CacheInterface{
protected $param;
public function prepare(array $param){
$this->param = $param;
return $this;
}
}
|