| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function build(ContainerBuilder $container) |
||
| 15 | { |
||
| 16 | parent::build($container); |
||
| 17 | |||
| 18 | $container->addCompilerPass(new CustomUserProviderCompilerPass()); |
||
| 19 | $container->addCompilerPass(new ObjectManagerCompilerPass()); |
||
| 20 | $container->addCompilerPass(new DoctrineMappingsCompilerPass()); |
||
| 21 | $container->addCompilerPass(new UserCheckerCompilerPass()); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |