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 ( 2c1dbb...6a0f46 )
by Matthias
03:18
created

TestKernel::configureContainer()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Webfactory\ShortcodeBundle\Tests\Fixtures;
4
5
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
6
use Symfony\Bundle\TwigBundle\TwigBundle;
7
use Symfony\Component\Config\Loader\LoaderInterface;
8
use Symfony\Component\HttpKernel\Kernel;
9
use Webfactory\ShortcodeBundle\WebfactoryShortcodeBundle;
10
11
final class TestKernel extends Kernel
12
{
13
    public function registerBundles(): array
14
    {
15
        return [
16
            new FrameworkBundle(),
17
            new TwigBundle(),
18
            new WebfactoryShortcodeBundle(),
19
        ];
20
    }
21
22
    public function registerContainerConfiguration(LoaderInterface $loader)
23
    {
24
        $loader->load(__DIR__.'/config/config.yml');
25
        $loader->load(__DIR__.'/config/test_shortcodes.xml');
26
    }
27
28
    public function getCacheDir(): string
29
    {
30
        return __DIR__.'/cache/'.$this->environment;
31
    }
32
33
    public function getLogDir(): string
34
    {
35
        return __DIR__.'/logs';
36
    }
37
}
38