<?php
declare(strict_types=1);
namespace Hofff\Contao\Consent\Core;
use Hofff\Contao\Consent\Core\DependencyInjection\Compiler\InstallerDataSetPass;
use Hofff\Contao\Consent\Core\DependencyInjection\Compiler\TagTypeCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class HofffContaoConsentCoreBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new TagTypeCompilerPass());
$container->addCompilerPass(new InstallerDataSetPass());
}
}