vendor/norzechowicz/aceeditor-bundle/NorzechowiczAceEditorBundle.php line 9

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