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