vendor/nelmio/security-bundle/src/NelmioSecurityBundle.php line 21

  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Nelmio SecurityBundle.
  5.  *
  6.  * (c) Nelmio <hello@nelm.io>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Nelmio\SecurityBundle;
  12. use Nelmio\SecurityBundle\DependencyInjection\Compiler\CspReportFilterCompilerPass;
  13. use Nelmio\SecurityBundle\DependencyInjection\Compiler\UAParserCompilerPass;
  14. use Symfony\Component\DependencyInjection\ContainerBuilder;
  15. use Symfony\Component\HttpKernel\Bundle\Bundle;
  16. final class NelmioSecurityBundle extends Bundle
  17. {
  18.     public function build(ContainerBuilder $container): void
  19.     {
  20.         parent::build($container);
  21.         $container->addCompilerPass(new UAParserCompilerPass());
  22.         $container->addCompilerPass(new CspReportFilterCompilerPass());
  23.     }
  24. }