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/Console/InitCommand.php 1 location

@@ 109-113 (lines=5) @@
106
            $default = false;
107
            try {
108
109
                if (method_exists('Symfony\Component\Process\Process', 'fromShellCommandline')) {
110
                    $process = Process::fromShellCommandline('git remote get-url origin');
111
                } else {
112
                    $process = new Process('git remote get-url origin');
113
                }
114
                $default = $process
115
                    ->mustRun()
116
                    ->getOutput();

src/Utility/ProcessRunner.php 1 location

@@ 47-51 (lines=5) @@
44
45
        $this->pop->command($hostname, $command);
46
47
        if (method_exists('Process', 'fromShellCommandline')) {
48
            $process = Process::fromShellCommandline($command);
49
        } else {
50
            $process = new Process($command);
51
        }
52
        $process
53
            ->setTimeout($config['timeout'])
54
            ->setTty($config['tty'])