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 DpnXmlSitemapBundle package.
5
 *
6
 * (c) Björn Fromme <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the Resources/meta/LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Dpn\XmlSitemapBundle;
13
14
use Dpn\XmlSitemapBundle\DependencyInjection\Compiler\GeneratorCompilerPass;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use Symfony\Component\HttpKernel\Bundle\Bundle;
17
18
class DpnXmlSitemapBundle extends Bundle
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23 3
    public function build(ContainerBuilder $container)
24
    {
25 3
        parent::build($container);
26
27 3
        $container->addCompilerPass(new GeneratorCompilerPass());
28 3
    }
29
}
30