Files
ezmigrationbundle/EzMigrationBundle.php
2016-07-30 01:43:55 +01:00

18 lines
460 B
PHP

<?php
namespace Kaliop\eZMigrationBundle;
use Kaliop\eZMigrationBundle\DependencyInjection\CompilerPass\TaggedServicesCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class EzMigrationBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new TaggedServicesCompilerPass());
}
}