src/Bundle/Abap/NotificationBundle/src/AbapNotificationBundle.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Abap\NotificationBundle;
  4. use Abap\NotificationBundle\DependencyInjection\CompilerPass\SenderRegistryPass;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use Symfony\Component\HttpKernel\Bundle\Bundle;
  7. final class AbapNotificationBundle extends Bundle
  8. {
  9.     public function build(ContainerBuilder $container): void
  10.     {
  11.         parent::build($container);
  12.         $container->addCompilerPass(new SenderRegistryPass());
  13.     }
  14. }