1 | <?php |
||
17 | class Cache extends Base |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Cache class instance |
||
22 | * @var \gplcart\core\Cache $cache |
||
23 | */ |
||
24 | protected $cache; |
||
25 | |||
26 | /** |
||
27 | * @param CoreCache $cache |
||
28 | */ |
||
29 | public function __construct(CoreCache $cache) |
||
35 | |||
36 | /** |
||
37 | * Callback for "cache-clear" command |
||
38 | */ |
||
39 | public function cmdClearCache() |
||
67 | |||
68 | } |
||
69 |