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

src/Core/Handle.php 2 locations

@@ 171-176 (lines=6) @@
168
        $text = self::renderHaltBody(get_class($exception), $exception->getMessage(), $exception->getLine(), $exception->getFile());
169
        $txt = self::renderLogBody(get_class($exception), $exception->getMessage(), $exception->getLine(), $exception->getFile());
170
        Container::get('logger')->critical($txt);
171
        if (Container::get('request')->isCli()) {
172
            self::outputCliError($exception->getMessage());
173
        } else {
174
            self::setDebugHeader($txt);
175
            self::halt($text, Container::get('config')->get('app_debug') ? 500 : 404);
176
        }
177
178
        exit;
179
    }
@@ 204-209 (lines=6) @@
201
            $txt = self::renderLogBody($type, $last_error['message'], $last_error['file'], $last_error['line']);
202
203
            Container::get('logger')->error($txt);
204
            if (Container::get('request')->isCli()) {
205
                self::outputCliError($last_error['message']);
206
            } else {
207
                self::setDebugHeader($txt);
208
                self::halt($text, Container::get('config')->get('app_debug') ? 500 : 404);
209
            }
210
211
            exit;
212
        }