vendor/pwt777/pheanstalk-bundle/src/LeezyPheanstalkBundle.php line 9

Open in your IDE?
  1. <?php
  2. namespace Leezy\PheanstalkBundle;
  3. use Leezy\PheanstalkBundle\DependencyInjection\Compiler\ProxyCompilerPass;
  4. use Symfony\Component\DependencyInjection\ContainerBuilder;
  5. use Symfony\Component\HttpKernel\Bundle\Bundle;
  6. class LeezyPheanstalkBundle extends Bundle
  7. {
  8.     /**
  9.      * @inheritdoc
  10.      */
  11.     public function build(ContainerBuilder $container)
  12.     {
  13.         parent::build($container);
  14.         $container->addCompilerPass(new ProxyCompilerPass());
  15.     }
  16. }