Completed
Pull Request — develop (#273)
by Samuel
19:01 queued 08:39
created

GravitonProxyBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
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\ProxyBundle;
7
8
use Graviton\BundleBundle\GravitonBundleInterface;
9
use Symfony\Component\HttpKernel\Bundle\Bundle;
10
11
/**
12
 * GravitonProxyBundle
13
 *
14
 * @author  List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
15
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
16
 * @link    http://swisscom.ch
17
 */
18
class GravitonProxyBundle extends Bundle implements GravitonBundleInterface
19
{
20
21
    /**
22
     * {@inheritDoc}
23
     *
24
     * @return \Symfony\Component\HttpKernel\Bundle\Bundle[]
25
     */
26 13
    public function getBundles()
27
    {
28 13
        return array();
29
    }
30
}
31