TestBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 2
c 1
b 1
f 0
dl 0
loc 14
rs 10
wmc 1

1 Method

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