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 = 5-5 lines in 2 locations

src/Commands/AbstractCommand.php 2 locations

@@ 96-100 (lines=5) @@
93
            $_oContainer = new ContainerBuilder();
94
95
            // load local parameters
96
            if (file_exists($this->getHomeDir() . DIRECTORY_SEPARATOR . 'parameters.yml'))
97
            {
98
                $_oLoader = new YamlFileLoader($_oContainer, new FileLocator($this->getHomeDir()));
99
                $_oLoader->load('parameters.yml');
100
            }
101
102
            // load optional parameter in the current working directory
103
            if (file_exists($this->getWorkingDir() . DIRECTORY_SEPARATOR . '.chapiconfig'))
@@ 103-107 (lines=5) @@
100
            }
101
102
            // load optional parameter in the current working directory
103
            if (file_exists($this->getWorkingDir() . DIRECTORY_SEPARATOR . '.chapiconfig'))
104
            {
105
                $_oLoader = new YamlFileLoader($_oContainer, new FileLocator($this->getWorkingDir()));
106
                $_oLoader->load('.chapiconfig');
107
            }
108
109
            // load services
110
            $_oLoader = new YamlFileLoader($_oContainer, new FileLocator(__DIR__ . self::FOLDER_RESOURCES));