Completed
Push — master ( a12db9...82664b )
by Julito
86:55 queued 55:35
created

ChamiloSettingsBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getParent() 0 4 1
1
<?php
2
/* For licensing terms, see /license.txt */
3
4
namespace Chamilo\SettingsBundle;
5
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
8
class ChamiloSettingsBundle extends Bundle
9
{
10
    public function getParent()
11
    {
12
        return 'SyliusSettingsBundle';
13
    }
14
}
15