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

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