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

GravitonProxyBundle::getBundles()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 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