<?phpdeclare(strict_types=1);namespace Abap\PaymentBundle;use Abap\PaymentBundle\DependencyInjection\Compiler\NotifyRequestHandlerPass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;/** * Class PaymentBundle */class AbapPaymentBundle extends Bundle{ public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new NotifyRequestHandlerPass()); }}