CacheAbstract.php 217 B

1234567891011
  1. <?php
  2. require_once(__DIR__ . '/CacheInterface.php');
  3. abstract class CacheAbstract implements CacheInterface {
  4. protected $param;
  5. public function prepare(array $param){
  6. $this->param = $param;
  7. return $this;
  8. }
  9. }