| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 30 | public function build(ContainerBuilder $container) |
|
| 20 | { |
||
| 21 | 30 | parent::build($container); |
|
| 22 | 30 | $container->addCompilerPass(new SymfonySerializerCompilerPass()); |
|
| 23 | 30 | $container->addCompilerPass(new DoctrineOrmCompilerPass()); |
|
| 24 | 30 | $container->addCompilerPass(new JmsSerializerCompilerPass()); |
|
| 25 | 30 | $container->addCompilerPass(new JmsSerializerDriverPass()); |
|
| 26 | 30 | $container->addCompilerPass(new SymfonyFormsCompilerPass()); |
|
| 27 | |||
| 28 | 30 | $container->addCompilerPass(new JmsSf4FixPass(), PassConfig::TYPE_REMOVE, 1000); |
|
| 29 | 30 | } |
|
| 30 | } |
||
| 31 |