vendor/erkens/2fa-text/TwoFactorTextBundle.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Erkens\Security\TwoFactorTextBundle;
  4. use Erkens\Security\TwoFactorTextBundle\DependencyInjection\Compiler\TextCompilerPass;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use Symfony\Component\HttpKernel\Bundle\Bundle;
  7. class TwoFactorTextBundle extends Bundle
  8. {
  9.     public function build(ContainerBuilder $container): void
  10.     {
  11.         parent::build($container);
  12.         $container->addCompilerPass(new TextCompilerPass());
  13.     }
  14. }