Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | class ProviderLoader |
||
30 | { |
||
31 | /** @var ServiceProviderInterface[] */ |
||
32 | private array $providers; |
||
33 | |||
34 | private array $config; |
||
35 | |||
36 | /** |
||
37 | * @param ServiceProviderInterface[] $providers |
||
38 | */ |
||
39 | 2 | public function __construct(array $providers, array $config = []) |
|
43 | 2 | } |
|
44 | |||
45 | /** |
||
46 | * Loads service providers will one configuration. |
||
47 | * |
||
48 | * @param Container|ContainerBuilder $container |
||
49 | */ |
||
50 | 2 | public function load(AbstractContainer $container): void |
|
57 |