vendor/hofff/contao-consent-core/src/HofffContaoConsentCoreBundle.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Hofff\Contao\Consent\Core;
  4. use Hofff\Contao\Consent\Core\DependencyInjection\Compiler\InstallerDataSetPass;
  5. use Hofff\Contao\Consent\Core\DependencyInjection\Compiler\TagTypeCompilerPass;
  6. use Symfony\Component\DependencyInjection\ContainerBuilder;
  7. use Symfony\Component\HttpKernel\Bundle\Bundle;
  8. final class HofffContaoConsentCoreBundle extends Bundle
  9. {
  10.     public function build(ContainerBuilder $container): void
  11.     {
  12.         parent::build($container);
  13.         $container->addCompilerPass(new TagTypeCompilerPass());
  14.         $container->addCompilerPass(new InstallerDataSetPass());
  15.     }
  16. }