<?php
declare(strict_types=1);
namespace Novaway\SyncBundle;
use Novaway\SyncBundle\DependencyInjection\CompilerPass\FillSyncTaskMappingPass;
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class NovawaySyncBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new FillSyncTaskMappingPass(), PassConfig::TYPE_BEFORE_REMOVING);
}
}