vendor/kevinpapst/adminlte-bundle/AdminLTEBundle.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the AdminLTE bundle.
  4.  *
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. namespace KevinPapst\AdminLTEBundle;
  9. use KevinPapst\AdminLTEBundle\DependencyInjection\Compiler\TwigPass;
  10. use Symfony\Component\DependencyInjection\ContainerBuilder;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. class AdminLTEBundle extends Bundle
  13. {
  14.     public function build(ContainerBuilder $container)
  15.     {
  16.         parent::build($container);
  17.         $container->addCompilerPass(new TwigPass());
  18.     }
  19. }