Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
namespace Itkg\DelayEventBundle;
4
5
use Itkg\DelayEventBundle\DependencyInjection\Compiler\EventDispatcherDecoratorCompilerPass;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
use Symfony\Component\HttpKernel\Bundle\Bundle;
8
9
/**
10
 * class ItkgDelayEventBundle 
11
 */
12
class ItkgDelayEventBundle extends Bundle
13
{
14
    /**
15
     * {@inheritDoc}
16
     */
17
    public function build(ContainerBuilder $container)
18
    {
19
        parent::build($container);
20
21
        $container->addCompilerPass(new EventDispatcherDecoratorCompilerPass());
22
    }
23
}
24