| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 19 | public function build(ContainerBuilder $container): void | ||
| 20 |     { | ||
| 21 | parent::build($container); | ||
| 22 | |||
| 23 | $container->addCompilerPass(new AddProviderCompilerPass()); | ||
| 24 | $container->addCompilerPass(new DoctrineProviderConfigurationCompilerPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 1); | ||
| 25 | $container->addCompilerPass(new CustomConfigurationCompilerPass()); | ||
| 26 | } | ||
| 28 |