vendor/fresh/doctrine-enum-bundle/FreshDoctrineEnumBundle.php line 24
<?php/** This file is part of the FreshDoctrineEnumBundle.** (c) Artem Henvald <genvaldartem@gmail.com>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/declare(strict_types=1);namespace Fresh\DoctrineEnumBundle;use Fresh\DoctrineEnumBundle\DependencyInjection\Compiler\RegisterEnumTypePass;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;/*** FreshDoctrineEnumBundle.** @author Artem Henvald <genvaldartem@gmail.com>*/class FreshDoctrineEnumBundle extends Bundle{/*** {@inheritdoc}*/public function build(ContainerBuilder $container): void{parent::build($container);$container->addCompilerPass(new RegisterEnumTypePass());}}