<?phpnamespace Tcd\DbBundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;use Tcd\DbBundle\DependencyInjection\Compiler\DoctrineMappingsCompilerPass;/** * Class TcdDbBundle. */class TcdDbBundle extends Bundle{ public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new DoctrineMappingsCompilerPass()); }}