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/GlLinkCheckerError.php 2 locations

@@ 183-187 (lines=5) @@
180
     */
181
    private function checkabsolute()
182
    {
183
        if (isset($this->url['host']) && (strlen($this->url['host']) > 0)) {
184
            $this->isAbsolute = true;
185
186
            return true;
187
        }
188
        if (isset($this->url['path']) && (strpos($this->url['path'], "/") === 0)) {
189
            $this->isAbsolute = true;
190
@@ 188-192 (lines=5) @@
185
186
            return true;
187
        }
188
        if (isset($this->url['path']) && (strpos($this->url['path'], "/") === 0)) {
189
            $this->isAbsolute = true;
190
191
            return true;
192
        }
193
        $this->isAbsolute = false;
194
195
        return false;