vendor/anyx/login-gate-bundle/LoginGateBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Anyx\LoginGateBundle;
  3. use Anyx\LoginGateBundle\DependencyInjection\CompilerPath;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class LoginGateBundle extends Bundle
  7. {
  8.     public function build(ContainerBuilder $container)
  9.     {
  10.         parent::build($container);
  11.         $container->addCompilerPass(new CompilerPath\Authentication());
  12.         $container->addCompilerPass(new CompilerPath\UsernameResolverCompilerPass());
  13.     }
  14. }