Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | 2 | public function build(ContainerBuilder $container) |
|
37 | { |
||
38 | 2 | parent::build($container); |
|
39 | |||
40 | 2 | $container->addCompilerPass(new SerializerCompilerPass()); |
|
41 | 2 | $container->addCompilerPass(new LoaderCompilerPass()); |
|
42 | 2 | $container->addCompilerPass(new InMemoryDataLoadCompilerPass($this->fileLocator)); |
|
43 | 2 | $container->addCompilerPass(new ActionRegisterCompilerPass()); |
|
44 | 2 | $container->addCompilerPass(new AliasRegisterCompilerPass()); |
|
45 | 2 | $container->addCompilerPass(new LoaderBridgeFormCompilerPass()); |
|
46 | 2 | } |
|
47 | } |
||
48 |