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

src/Pool.php 2 locations

@@ 154-163 (lines=10) @@
151
        $this->notify();
152
    }
153
154
    public function markAsTimedOut(ParallelProcess $process)
155
    {
156
        $process->triggerTimeout();
157
158
        unset($this->inProgress[$process->getPid()]);
159
160
        $this->failed[$process->getPid()] = $process;
161
162
        $this->notify();
163
    }
164
165
    public function markAsFailed(ParallelProcess $process)
166
    {
@@ 165-174 (lines=10) @@
162
        $this->notify();
163
    }
164
165
    public function markAsFailed(ParallelProcess $process)
166
    {
167
        $process->triggerError();
168
169
        unset($this->inProgress[$process->getPid()]);
170
171
        $this->failed[$process->getPid()] = $process;
172
173
        $this->notify();
174
    }
175
176
    public function offsetExists($offset)
177
    {