Completed
Push — master ( 7aca4a...ec834d )
by Julito
12:51
created

ChamiloCoreBundle::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
namespace Chamilo\CoreBundle;
5
6
use Chamilo\CoreBundle\DependencyInjection\Compiler\DoctrineEntityListenerPass;
7
use Symfony\Component\DependencyInjection\ContainerBuilder;
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
10
/**
11
 * Class ChamiloCoreBundle.
12
 *
13
 * @package Chamilo\CoreBundle
14
 */
15
class ChamiloCoreBundle extends Bundle
16
{
17
    public function build(ContainerBuilder $container)
18
    {
19
        parent::build($container);
20
    }
21
}
22