src/VxsBundle/VxsBundle.php line 9

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