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

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

@@ 240-248 (lines=9) @@
237
            }
238
        }
239
240
        if (null === $value) {
241
            if ($option->isValueRequired()) {
242
                throw new \RuntimeException(sprintf('The "--%s" option requires a value.', $name));
243
            }
244
245
            if (!$option->isArray()) {
246
                $value = $option->isValueOptional() ? $option->getDefault() : true;
247
            }
248
        }
249
250
        if ($option->isArray()) {
251
            $this->options[$name][] = $value;

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

@@ 184-190 (lines=7) @@
181
182
        $option = $this->definition->getOption($name);
183
184
        if (null === $value) {
185
            if ($option->isValueRequired()) {
186
                throw new \InvalidArgumentException(sprintf('The "--%s" option requires a value.', $name));
187
            }
188
189
            $value = $option->isValueOptional() ? $option->getDefault() : true;
190
        }
191
192
        $this->options[$name] = $value;
193
    }