Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | private function loadContainer($fixture, CompilerPassInterface ...$compilerPasses): ContainerBuilder |
||
34 | { |
||
35 | return $this->buildContainer() |
||
36 | ->withExtensions( |
||
37 | new ProophAsynchronousRouterExtension(), |
||
38 | new ProophServiceBusExtension() |
||
39 | ) |
||
40 | ->withConfigFiles($fixture, 'commonServices') |
||
41 | ->withCompilerPasses(...$compilerPasses) |
||
42 | ->compile(); |
||
43 | } |
||
44 | } |
||
45 |