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

src/Api/ConnectionsModule.php 2 locations

@@ 113-115 (lines=3) @@
110
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user or certificate does not exist']);
111
        }
112
113
        if ($result['user_is_disabled']) {
114
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user is disabled']);
115
        }
116
117
        if ($result['certificate_is_disabled']) {
118
            return new ApiResponse('connect', ['ok' => false, 'error' => 'certificate is disabled']);
@@ 117-119 (lines=3) @@
114
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user is disabled']);
115
        }
116
117
        if ($result['certificate_is_disabled']) {
118
            return new ApiResponse('connect', ['ok' => false, 'error' => 'certificate is disabled']);
119
        }
120
121
        return $this->verifyAcl($profileId, $result['external_user_id']);
122
    }