XimaDepmonBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getParent() 0 4 1
1
<?php
2
3
namespace Xima\DepmonBundle;
4
5
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
8
class XimaDepmonBundle extends Bundle {
9
10
    /**
11
     * Returns the bundle name that this bundle overrides.
12
     *
13
     * Despite its name, this method does not imply any parent/child relationship
14
     * between the bundles, just a way to extend and override an existing
15
     * bundle.
16
     *
17
     * @return string The Bundle name it overrides or null if no parent
18
     */
19
    public function getParent()
20
    {
21
        // TODO: Implement getParent() method.
22
        return null;
23
    }
24
}