Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 27 | public function onPluginsLoaded() |
|
28 | { |
||
29 | 27 | $storage = $this->settings['storage']; |
|
30 | 27 | $config = $this->settings; |
|
31 | 27 | unset($config['active'], $config['storage']); |
|
32 | 27 | $psr16Cache = new \phpFastCache\Helper\Psr16Adapter($storage, $config); |
|
33 | |||
34 | 27 | $phileCache = new PhileToPsr16CacheAdapter($psr16Cache); |
|
35 | 27 | ServiceLocator::registerService('Phile_Cache', $phileCache); |
|
36 | 27 | } |
|
37 | } |
||
38 |