Completed
Push — master ( fdbeef...265a2d )
by jerome
25:01 queued 21:35
created

DPCoreBundle::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/**
4
 * This file is part of Dedipanel project
5
 *
6
 * (c) 2010-2015 Dedipanel <http://www.dedicated-panel.net>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace DP\Core\CoreBundle;
13
14
use Symfony\Component\HttpKernel\Bundle\Bundle;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use DP\Core\CoreBundle\DependencyInjection\Compiler\PhpseclibDebugCompilerPass;
17
18
class DPCoreBundle extends Bundle
19
{
20
    public function build(ContainerBuilder $container)
21
    {
22
        $container->addCompilerPass(new PhpseclibDebugCompilerPass);
23
    }
24
}
25