Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function setUp() |
||
25 | { |
||
26 | $containerBuilder = new ContainerBuilder; |
||
27 | $containerBuilder->parameters = ['appDir' => __DIR__]; |
||
28 | |||
29 | $compiler = new Compiler($containerBuilder); |
||
30 | $compiler->addExtension('events', new EventDispatcherExtension); |
||
31 | |||
32 | $this->extension = new MigrationsExtension; |
||
33 | $this->extension->setCompiler($compiler, 'migrations'); |
||
34 | } |
||
35 | |||
48 |