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

ChamiloCoreBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 3 1
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