- <?php
- /**
-  * Copyright(c) 2024 SYSTEM_KD
-  * Date: 2024/06/02
-  */
- namespace Plugin\PointExDx\Service\PlgConfigService\Bundle;
- use Plugin\PointExDx\Service\PlgConfigService\DependencyInjection\Compiler\ServiceLocatorPass;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\HttpKernel\Bundle\Bundle;
- class PointExDxConfigBundle extends Bundle
- {
-     public function build(ContainerBuilder $container): void
-     {
-         parent::build($container);
-         $container->addCompilerPass(new ServiceLocatorPass());
-     }
- }
-