Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class Parser |
||
11 | { |
||
12 | /** |
||
13 | * @var \Xervice\Config\Business\Container\ConfigContainer |
||
14 | */ |
||
15 | private $configContainer; |
||
16 | |||
17 | /** |
||
18 | * Parser constructor. |
||
19 | * |
||
20 | * @param \Xervice\Config\Business\Container\ConfigContainer $configContainer |
||
21 | */ |
||
22 | 14 | public function __construct(ConfigContainer $configContainer) |
|
23 | { |
||
24 | 14 | $this->configContainer = $configContainer; |
|
25 | 14 | } |
|
26 | |||
27 | /** |
||
28 | * @param string $file |
||
29 | */ |
||
30 | 14 | public function parseFile(string $file): void |
|
36 | } |
||
37 | 14 | } |
|
39 |