vendor/kunstmaan/node-bundle/KunstmaanNodeBundle.php line 9

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