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.

Code

< 40 %
40-60 %
> 60 %
1
<?php
2
3
/*
4
 * This file is part of the CoreSphereConsoleBundle.
5
 *
6
 * (c) Laszlo Korte <[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 CoreSphere\ConsoleBundle;
13
14
use CoreSphere\ConsoleBundle\DependencyInjection\Extension\CoreSphereConsoleExtension;
15
use Symfony\Component\HttpKernel\Bundle\Bundle;
16
17
class CoreSphereConsoleBundle extends Bundle
18
{
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function getContainerExtension()
23
    {
24
        return new CoreSphereConsoleExtension();
25
    }
26
}
27