<?phpnamespace Nen\Bundle\KennisbankPlatformBundle;use Nen\Bundle\KennisbankPlatformBundle\DependencyInjection\Compiler\UserRolesProviderCompilerPass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;class KennisbankPlatformBundle extends Bundle{ public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new UserRolesProviderCompilerPass()); }}