1 | <?php |
||
23 | class CustomMemcachedCacheClass extends phpFastCacheAbstractProxy |
||
24 | { |
||
25 | public function __construct($driver = '', array $config = []) |
||
26 | { |
||
27 | global $defaultDriver; |
||
28 | $driver = $defaultDriver; |
||
29 | parent::__construct($driver, $config); |
||
30 | /** |
||
31 | * That's all !! Your cache class is ready to use |
||
32 | */ |
||
33 | } |
||
34 | } |
||
35 | |||
50 | $testHelper->terminateTest(); |