Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 0 |
1 | <?php |
||
8 | class AbstractConfig implements ConfigInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var \Xervice\Config\Business\Container\ConfigContainer |
||
12 | */ |
||
13 | private $config; |
||
14 | |||
15 | /** |
||
16 | * AbstractConfig constructor. |
||
17 | */ |
||
18 | 4 | public function __construct() |
|
21 | 4 | } |
|
22 | |||
23 | /** |
||
24 | * @param string $name |
||
25 | * @param mixed $default |
||
26 | * |
||
27 | * @return mixed |
||
28 | */ |
||
29 | protected function get(string $name, $default = null) |
||
34 |