Completed
Push — feature/EVO-7278-tracking-info... ( d73a1e )
by
unknown
63:38
created

GravitonAuditTrackingBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBundles() 0 4 1
1
<?php
2
3
namespace Graviton\AuditTrackingBundle;
4
5
use Graviton\BundleBundle\GravitonBundleInterface;
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
8
class GravitonAuditTrackingBundle extends Bundle implements GravitonBundleInterface
9
{
10
    /**
11
     * return array of new bunde instances
12
     *
13
     * @return \Symfony\Component\HttpKernel\Bundle\Bundle[]
14
     */
15
    public function getBundles()
16
    {
17
        return array();
18
    }
19
}
20