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

GravitonAuditTrackingBundle::getBundles()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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