Files
ezmigrationbundle2/eZMigrationBundle.php

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());
}
}