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

GravitonI18nBundle::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
 * 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