<?phpdeclare(strict_types=1);namespace Abap\NotificationBundle;use Abap\NotificationBundle\DependencyInjection\CompilerPass\SenderRegistryPass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;final class AbapNotificationBundle extends Bundle{ public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new SenderRegistryPass()); }}