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

src/Task/IterateTask.php 1 location

@@ 153-159 (lines=7) @@
150
            }
151
        }
152
153
        if (isset($exception) && $exception instanceof Exception\BreakException) {
154
            $message = $exception->getMessage();
155
            if ($message) {
156
                $this->console->output($task->expand($message));
157
            }
158
            unset($exception);
159
        }
160
161
        if (isset($key)) {
162
            foreach ($as as $name) {

src/Tasks.php 1 location

@@ 255-264 (lines=10) @@
252
253
        $this->console->outdent($indent);
254
255
        if ($exception) {
256
            if ($exception instanceof BreakException) {
257
                $message = $exception->getMessage();
258
                if ($message) {
259
                    $this->console->output($task->expand($message));
260
                }
261
            } else {
262
                throw $exception;
263
            }
264
        }
265
266
        return $this;
267
    }