<?php
declare(strict_types=1);
namespace Abap\NotifierBundle;
use Abap\NotifierBundle\DependencyInjection\Compiler\NotificationMethodCollectionPass;
use Abap\NotifierBundle\DependencyInjection\Compiler\NotificationTypeCollectionPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
final class AbapNotifierBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new NotificationMethodCollectionPass());
$container->addCompilerPass(new NotificationTypeCollectionPass());
}
}