<?phpnamespace IntegrationBundle;use IntegrationBundle\Service\Diia\DiiaCompiler;use Symfony\Component\HttpKernel\Bundle\Bundle;use Symfony\Component\DependencyInjection\ContainerBuilder;class IntegrationBundle extends Bundle{    public function build(ContainerBuilder $container)    {        $container->addCompilerPass(new DiiaCompiler());    }}