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

src/Job.php 2 locations

@@ 297-299 (lines=3) @@
294
                if ($required) {
295
                    $mode |= InputOption::VALUE_REQUIRED;
296
                }
297
                if (in_array('array', explode('|', $config['type']), true)) {
298
                    $mode |= InputOption::VALUE_IS_ARRAY;
299
                }
300
                if (preg_match('/(^|\|)bool(ean)?($|\|)/', $config['type'])) {
301
                    if (strpos($config['type'], '|')) {
302
                        $mode |= InputOption::VALUE_NONE;
@@ 321-323 (lines=3) @@
318
                if ($required) {
319
                    $mode |= InputArgument::REQUIRED;
320
                }
321
                if (in_array('array', explode('|', $config['type']), true)) {
322
                    $mode |= InputArgument::IS_ARRAY;
323
                }
324
                $definition->addArgument(
325
                    new InputArgument($from, $mode, $config['label'], array_key_exists('default', $config) ? $config['default'] : null)
326
                );