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