Completed
Pull Request — develop (#393)
by Lucas
36:24 queued 30:29
created

GravitonI18nBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBundles() 0 4 1
1
<?php
2
/**
3
 * Graviton internationalization plugin
4
 */
5
6
namespace Graviton\I18nBundle;
7
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
use Graviton\BundleBundle\GravitonBundleInterface;
10
11
/**
12
 * Graviton internationalization plugin
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 GravitonI18nBundle extends Bundle implements GravitonBundleInterface
19
{
20
    /**
21
     * {@inheritDoc}
22
     *
23
     * set up graviton symfony bundles
24
     *
25
     * @return \Symfony\Component\HttpKernel\Bundle\Bundle[]
26
     */
27 2
    public function getBundles()
28
    {
29 2
        return array();
30
    }
31
}
32