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

vendor/symfony/console/Symfony/Component/Console/Helper/DialogHelper.php 1 location

@@ 437-446 (lines=10) @@
434
        return self::$shell;
435
    }
436
437
    private function hasSttyAvailable()
438
    {
439
        if (null !== self::$stty) {
440
            return self::$stty;
441
        }
442
443
        exec('stty 2>&1', $output, $exitcode);
444
445
        return self::$stty = $exitcode === 0;
446
    }
447
448
    /**
449
     * Validate an attempt.

vendor/symfony/console/Symfony/Component/Console/Helper/QuestionHelper.php 1 location

@@ 408-417 (lines=10) @@
405
     *
406
     * @return bool
407
     */
408
    private function hasSttyAvailable()
409
    {
410
        if (null !== self::$stty) {
411
            return self::$stty;
412
        }
413
414
        exec('stty 2>&1', $output, $exitcode);
415
416
        return self::$stty = $exitcode === 0;
417
    }
418
}
419