vendor/knplabs/knp-disqus-bundle/src/KnpDisqusBundle.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the KnpDisqusBundle package.
  4.  *
  5.  * (c) KnpLabs <hello@knplabs.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Knp\Bundle\DisqusBundle;
  11. use Knp\Bundle\DisqusBundle\DependencyInjection\Compiler\TwigPass;
  12. use Symfony\Component\DependencyInjection\ContainerBuilder;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. /**
  15.  * KnpDisqusBundle.
  16.  *
  17.  * @author Józef Bielawski <jozef.bielawski@gmail.com>
  18.  * @author Sadicov Vladimir <vladimir@symfonycasts.com>
  19.  */
  20. class KnpDisqusBundle extends Bundle
  21. {
  22.     public function build(ContainerBuilder $container): void
  23.     {
  24.         parent::build($container);
  25.         $container->addCompilerPass(new TwigPass());
  26.     }
  27.     public function getPath(): string
  28.     {
  29.         return \dirname(__DIR__);
  30.     }
  31. }