<?php declare(strict_types=1);namespace App\StartPlatz\Bundle\SitemapBundle;use App\StartPlatz\Bundle\SitemapBundle\DependencyInjection\Compiler\SourceCompilerPass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;class StartPlatzSitemapBundle extends Bundle{ public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new SourceCompilerPass()); }}