Completed
Push — feature/service-wrapper-for-sw... ( faf928...5dac9b )
by Samuel
13:45 queued 01:09
created

GravitonMigrationBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 1
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBundles() 0 4 1
1
<?php
2
/**
3
 * core infrastructure like logging and framework.
4
 */
5
6
namespace Graviton\MigrationBundle;
7
8
use Graviton\BundleBundle\GravitonBundleInterface;
9
use Symfony\Component\HttpKernel\Bundle\Bundle;
10
11
/**
12
 * GravitonMigrationBundle
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 GravitonMigrationBundle 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
    public function getBundles()
28
    {
29
        return [];
30
    }
31
}
32