<?php/* * This file is part of the NelmioCorsBundle. * * (c) Nelmio <hello@nelm.io> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespace Nelmio\CorsBundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;/** * @author Jordi Boggiano <j.boggiano@seld.be> */class NelmioCorsBundle extends Bundle{ public function build(ContainerBuilder $container): void { parent::build($container); $container->addCompilerPass(new DependencyInjection\Compiler\CorsConfigurationProviderPass()); }}