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 guzzle-stereo-bundle package.
5
 *
6
 * (c) Enrico Stahn <[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 EnricoStahn\Bundle\GuzzleStereoBundle;
13
14
use EnricoStahn\Bundle\GuzzleStereoBundle\DependencyInjection\Compiler\ClientCompilerPass;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use Symfony\Component\HttpKernel\Bundle\Bundle;
17
18
class GuzzleStereoBundle extends Bundle
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function build(ContainerBuilder $container)
24
    {
25
        parent::build($container);
26
        $container->addCompilerPass(new ClientCompilerPass());
27
    }
28
}
29