<?php declare(strict_types = 1);
namespace VxsBundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use VxsBundle\DependencyInjection\Compiler\TwigPass;
class VxsBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
$container->addCompilerPass(new TwigPass());
}
}