GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( df8c18...6eb035 )
by Théo
70:05 queued 35:07
created

TestKernel   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 12

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 12
dl 0
loc 24
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A registerBundles() 0 15 1
A registerContainerConfiguration() 0 5 1
1
<?php
2
3
/*
4
 * This file is part of the Hautelook\AliceBundle package.
5
 *
6
 * (c) Baldur Rensch <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Hautelook\AliceBundle\Functional;
13
14
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
15
use Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle;
16
use Hautelook\AliceBundle\Functional\TestBundle\Bundle\ABundle\TestABundle;
17
use Hautelook\AliceBundle\Functional\TestBundle\Bundle\BBundle\TestBBundle;
18
use Hautelook\AliceBundle\Functional\TestBundle\Bundle\CBundle\TestCBundle;
19
use Hautelook\AliceBundle\HautelookAliceBundle;
20
use Hautelook\AliceBundle\Functional\TestBundle\TestBundle;
21
use Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle;
22
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
23
use Symfony\Bundle\MonologBundle\MonologBundle;
24
use Symfony\Component\Config\Loader\LoaderInterface;
25
use Symfony\Component\HttpKernel\Kernel;
26
27
/**
28
 * @author Théo FIDRY <[email protected]>
29
 */
30
class TestKernel extends Kernel
31
{
32
    public function registerBundles()
33
    {
34
        return [
35
            new FrameworkBundle(),
36
            new MonologBundle(),
37
            new NelmioAliceBundle(),
38
            new FidryAliceDataFixturesBundle(),
39
            new DoctrineBundle(),
40
            new HautelookAliceBundle(),
41
            new TestBundle(),
42
            new TestABundle(),
43
            new TestBBundle(),
44
            new TestCBundle(),
45
        ];
46
    }
47
48
    public function registerContainerConfiguration(LoaderInterface $loader)
49
    {
50
        $loader->load(__DIR__.'/config/config.yml');
51
        $loader->load(__DIR__.'/config/doctrine.yml');
52
    }
53
}
54