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.
Test Failed
Push — master ( 06bc6c...e92c95 )
by Mewes
03:57
created

TestAppKernel   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 7

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 7
dl 0
loc 42
rs 10
c 0
b 0
f 0
1
<?php
2
3
use Symfony\Component\Config\Loader\LoaderInterface;
4
use Symfony\Component\HttpKernel\Kernel;
5
6
/**
7
 * Class TestAppKernel.
8
 */
9
class TestAppKernel extends Kernel
10
{
11
    /**
12
     * @return array
13
     */
14
    public function registerBundles()
15
    {
16
        return [
17
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
18
            new Symfony\Bundle\TwigBundle\TwigBundle(),
19
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
20
            new MewesK\TwigSpreadsheetBundle\MewesKTwigSpreadsheetBundle(),
21
            new MewesK\TwigSpreadsheetBundle\Tests\Fixtures\TestBundle\TestBundle(),
22
        ];
23
    }
24
25
    /**
26
     * @param LoaderInterface $loader
27
     *
28
     * @throws \Exception
29
     */
30
    public function registerContainerConfiguration(LoaderInterface $loader)
31
    {
32
        $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
33
    }
34
35
    /**
36
     * @return string
37
     */
38
    public function getCacheDir()
39
    {
40
        return $this->getRootDir().'/../../tmp/cache';
41
    }
42
43
    /**
44
     * @return string
45
     */
46
    public function getLogDir()
47
    {
48
        return $this->getRootDir().'/../../tmp/logs';
49
    }
50
}
51