vendor/sulu/community-bundle/SuluCommunityBundle.php line 25
<?php/** This file is part of Sulu.** (c) Sulu GmbH** This source file is subject to the MIT license that is bundled* with this source code in the file LICENSE.*/namespace Sulu\Bundle\CommunityBundle;use Sulu\Bundle\CommunityBundle\DependencyInjection\CompilerPass\CommunityManagerCompilerPass;use Sulu\Bundle\CommunityBundle\DependencyInjection\CompilerPass\CommunityValidatorCompilerPass;use Sulu\Bundle\CommunityBundle\Entity\BlacklistItem;use Sulu\Bundle\CommunityBundle\Entity\BlacklistUser;use Sulu\Bundle\PersistenceBundle\PersistenceBundleTrait;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;/*** Register the bundles compiler passes.*/class SuluCommunityBundle extends Bundle{use PersistenceBundleTrait;public function build(ContainerBuilder $container): void{$this->buildPersistence([BlacklistItem::class => 'sulu.model.blacklist_item.class',BlacklistUser::class => 'sulu.model.blacklist_user.class',],$container);$container->addCompilerPass(new CommunityManagerCompilerPass());$container->addCompilerPass(new CommunityValidatorCompilerPass());}}