Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
36 | 15 | private function _setConfig(): void |
|
37 | { |
||
38 | 15 | $this->_container['config'] = [ |
|
39 | 15 | 'cache.default' => $this->_driver, |
|
40 | 15 | $this->_driverStoreKey => ['driver' => $this->_driver] + $this->_options, |
|
41 | 15 | 'cache.prefix' => $this->_options['cache_prefix'] ?? self::DEFAULT_CACHE_PREFIX |
|
42 | ]; |
||
50 |