62eec43980
All files are now using tabs for indentation
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;
|
|
}
|
|
}
|