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

vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php 1 location

@@ 193-200 (lines=8) @@
190
     *
191
     * @throws \RuntimeException When option given doesn't exist
192
     */
193
    private function addShortOption($shortcut, $value)
194
    {
195
        if (!$this->definition->hasShortcut($shortcut)) {
196
            throw new \RuntimeException(sprintf('The "-%s" option does not exist.', $shortcut));
197
        }
198
199
        $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value);
200
    }
201
202
    /**
203
     * Adds a long option value.

vendor/symfony/console/Symfony/Component/Console/Input/ArrayInput.php 1 location

@@ 158-165 (lines=8) @@
155
     *
156
     * @throws \InvalidArgumentException When option given doesn't exist
157
     */
158
    private function addShortOption($shortcut, $value)
159
    {
160
        if (!$this->definition->hasShortcut($shortcut)) {
161
            throw new \InvalidArgumentException(sprintf('The "-%s" option does not exist.', $shortcut));
162
        }
163
164
        $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value);
165
    }
166
167
    /**
168
     * Adds a long option value.