vendor/leogout/seo-bundle/LeogoutSeoBundle.php line 9

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