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

ChamiloSettingsBundle::getParent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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