for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pim\Bundle\CustomEntityBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* Pim Custom Entity Bundle
*
* @author Antoine Guigan <[email protected]>
* @copyright 2013 Akeneo SAS (http://www.akeneo.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
class PimCustomEntityBundle extends Bundle
{
* {@inheritdoc}
public function build(ContainerBuilder $container)
$container
->addCompilerPass(new DependencyInjection\Compiler\ConfigurationBuilderPass())
->addCompilerPass(new DependencyInjection\Compiler\SerializerPass())
->addCompilerPass(new DependencyInjection\Compiler\ManagerRegistryPass());
}