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