| Total Complexity | 2 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Config extends Repository |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param array $config |
||
| 11 | */ |
||
| 12 | public function __construct($config = []) |
||
| 13 | { |
||
| 14 | $this->items = $this->mergeConfig($config); |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param array $config |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | private function mergeConfig($config = []): array |
||
| 52 | } |
||
| 53 | } |
||
| 54 |