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

AppKernel   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 9

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 9
dl 0
loc 21
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A registerBundles() 0 12 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 Fidry\PsyshBundle\PsyshBundle;
17
use Hautelook\AliceBundle\HautelookAliceBundle;
18
use Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle;
19
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
20
use Symfony\Bundle\MonologBundle\MonologBundle;
21
use Symfony\Component\Config\Loader\LoaderInterface;
22
use Symfony\Component\HttpKernel\Kernel;
23
24
/**
25
 * @author Théo FIDRY <[email protected]>
26
 */
27
class AppKernel extends Kernel
28
{
29
    public function registerBundles()
30
    {
31
        return [
32
            new FrameworkBundle(),
33
            new MonologBundle(),
34
            new NelmioAliceBundle(),
35
            new FidryAliceDataFixturesBundle(),
36
            new DoctrineBundle(),
37
            new HautelookAliceBundle(),
38
            new PsyshBundle(),
39
        ];
40
    }
41
42
    public function registerContainerConfiguration(LoaderInterface $loader)
43
    {
44
        $loader->load(__DIR__.'/config/config.yml');
45
        $loader->load(__DIR__.'/config/doctrine.yml');
46
    }
47
}
48