Files
ezmigrationbundle/eZMigrationBundle.php
2019-08-21 17:04:28 +02: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());
}
}