Test Setup Failed
Push — master ( bed6df...2c3741 )
by Alex
04:23
created

SitetheoryProfilerStorageBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
namespace Sitetheory\Bundle\ProfilerStorageBundle;
4
5
use Symfony\Component\HttpKernel\Bundle\Bundle;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
use Sitetheory\Bundle\ProfilerStorageBundle\DependencyInjection\Compiler\ProfilerCompilerPass;
8
9
/**
10
 * Class SitetheoryProfilerStorageBundle
11
 * @package Sitetheory\Bundle\ProfilerStorageBundle
12
 */
13
class SitetheoryProfilerStorageBundle extends Bundle
14
{
15
    public function build(ContainerBuilder $container)
16
    {
17
        $container->addCompilerPass(new ProfilerCompilerPass());
18
        parent::build($container);
19
    }
20
}
21