<?php
namespace Leezy\PheanstalkBundle;
use Leezy\PheanstalkBundle\DependencyInjection\Compiler\ProxyCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class LeezyPheanstalkBundle extends Bundle
{
/**
* @inheritdoc
*/
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new ProxyCompilerPass());
}
}