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 Duplication    Length = 13-13 lines in 2 locations

fixtures/SymfonyApp/cache/test/SymfonyAppTestDebugProjectContainer.php 1 location

@@ 1891-1903 (lines=13) @@
1888
     *
1889
     * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance
1890
     */
1891
    protected function getRouting_LoaderService()
1892
    {
1893
        $a = $this->get('file_locator');
1894
1895
        $b = new \Symfony\Component\Config\Loader\LoaderResolver();
1896
        $b->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
1897
        $b->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
1898
        $b->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
1899
        $b->addLoader(new \Symfony\Component\Routing\Loader\DirectoryLoader($a));
1900
        $b->addLoader(new \Symfony\Component\Routing\Loader\DependencyInjection\ServiceRouterLoader($this));
1901
1902
        return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $b);
1903
    }
1904
1905
    /**
1906
     * Gets the 'service_container' service.

fixtures/SymfonyApp/cache/test/SymfonyAppTestProjectContainer.php 1 location

@@ 1357-1369 (lines=13) @@
1354
     *
1355
     * @return \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader A Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader instance
1356
     */
1357
    protected function getRouting_LoaderService()
1358
    {
1359
        $a = $this->get('file_locator');
1360
1361
        $b = new \Symfony\Component\Config\Loader\LoaderResolver();
1362
        $b->addLoader(new \Symfony\Component\Routing\Loader\XmlFileLoader($a));
1363
        $b->addLoader(new \Symfony\Component\Routing\Loader\YamlFileLoader($a));
1364
        $b->addLoader(new \Symfony\Component\Routing\Loader\PhpFileLoader($a));
1365
        $b->addLoader(new \Symfony\Component\Routing\Loader\DirectoryLoader($a));
1366
        $b->addLoader(new \Symfony\Component\Routing\Loader\DependencyInjection\ServiceRouterLoader($this));
1367
1368
        return $this->services['routing.loader'] = new \Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader($this->get('controller_name_converter'), $b);
1369
    }
1370
1371
    /*
1372
     * Gets the 'service_container' service.