Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
33 | 2 | public function __construct(array $config = [], array $prepends = []) |
|
34 | { |
||
35 | 2 | parent::__construct($config, $prepends); |
|
36 | |||
37 | $providers = [ |
||
38 | 2 | AggregateServiceProvider::class, |
|
39 | MiniProgram\ServiceProvider::class, |
||
40 | ]; |
||
41 | |||
42 | 2 | foreach ($providers as $provider) { |
|
43 | 2 | $this->register(new $provider()); |
|
44 | } |
||
47 |