| 1 | <?php |
||
| 20 | class AppBundle extends Bundle |
||
| 21 | { |
||
| 22 | public function build(ContainerBuilder $container) |
||
| 23 | { |
||
| 24 | parent::build($container); |
||
| 25 | |||
| 26 | $container->addCompilerPass(new DependencyManagerCompilerPass()); |
||
| 27 | $container->addCompilerPass(new RepositoryManagerCompilerPass()); |
||
| 28 | $container->addCompilerPass(new PackageManagerCompilerPass()); |
||
| 29 | } |
||
| 30 | } |
||
| 31 |