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

@@ 105-107 (lines=3) @@
102
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user or certificate does not exist']);
103
        }
104
105
        if ($result['user_is_disabled']) {
106
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user is disabled']);
107
        }
108
109
        if ($result['certificate_is_disabled']) {
110
            return new ApiResponse('connect', ['ok' => false, 'error' => 'certificate is disabled']);
@@ 109-111 (lines=3) @@
106
            return new ApiResponse('connect', ['ok' => false, 'error' => 'user is disabled']);
107
        }
108
109
        if ($result['certificate_is_disabled']) {
110
            return new ApiResponse('connect', ['ok' => false, 'error' => 'certificate is disabled']);
111
        }
112
113
        return $this->verifyAcl($profileId, $result['external_user_id']);
114
    }