Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | protected function givenContainerWithFixtureFiles( |
||
20 | array $fixtureFiles = [] |
||
21 | ) { |
||
22 | $container = $this->buildContainer() |
||
23 | ->withExtensions( |
||
24 | new ProophAsynchronousRouterExtension(), |
||
25 | new ProophServiceBusExtension() |
||
26 | ); |
||
27 | foreach ($fixtureFiles as $fixtureFile) { |
||
28 | $container->withConfigFiles($fixtureFile); |
||
29 | } |
||
30 | |||
31 | $this->containerBuilder = $container->compile(); |
||
32 | } |
||
33 | |||
44 |