<?phpnamespace ProjectBiz\DatabaseBundle;use ProjectBiz\DatabaseBundle\Build\RepositoryConfigurationManagerCompilerPass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;class ProjectBizDatabaseBundle extends Bundle{ public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new RepositoryConfigurationManagerCompilerPass()); }}