Completed
Pull Request — develop (#512)
by Adrian
16:23 queued 09:34
created

GravitonProxyExtensionBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 12
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBundles() 0 4 1
1
<?php
2
/**
3
 * Provide a Proxy for third party APIs.
4
 */
5
6
namespace Graviton\ProxyExtensionBundle;
7
8
use Graviton\BundleBundle\GravitonBundleInterface;
9
use Graviton\ProxyFundinfoExtensionBundle\GravitonProxyFundinfoExtensionBundle;
10
use Graviton\ProxyVontobelExtensionBundle\GravitonProxyVontobelExtensionBundle;
11
use Graviton\ProxyZugerkbExtensionBundle\GravitonProxyZugerkbExtensionBundle;
12
use Symfony\Component\HttpKernel\Bundle\Bundle;
13
14
/**
15
 * GravitonProxyExtensionBundle
16
 *
17
 * @author  List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
18
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
19
 * @link    http://swisscom.ch
20
 */
21
class GravitonProxyExtensionBundle extends Bundle implements GravitonBundleInterface
22
{
23
    /**
24
     * {@inheritDoc}
25
     *
26
     * @return \Symfony\Component\HttpKernel\Bundle\Bundle[]
27
     */
28 8
    public function getBundles()
29
    {
30 8
        return array();
31
    }
32
}
33