Total Complexity | 4 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class ContainerFactory |
||
15 | { |
||
16 | private $builder; |
||
|
|||
17 | |||
18 | private $configCache; |
||
19 | |||
20 | private $id; |
||
21 | |||
22 | private $class; |
||
23 | |||
24 | private $config; |
||
25 | |||
26 | /** |
||
27 | * @var bool |
||
28 | */ |
||
29 | private $debug; |
||
30 | |||
31 | 2 | public function __construct(array $config = [], bool $debug = false) |
|
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return ContainerInterface |
||
44 | */ |
||
45 | 1 | public function getContainer(): ContainerInterface |
|
78 |