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

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 171-178 (lines=8) @@
168
     *
169
     * @return bool
170
     */
171
    private function hasResult(stdClass $resultRaw)
172
    {
173
        if (isset($resultRaw->type) && $this->isRealResult($resultRaw->type)) {
174
            return true;
175
        }
176
177
        return false;
178
    }
179
180
    /**
181
     *

src/Provider/Http/UserAgentStringCom.php 1 location

@@ 125-132 (lines=8) @@
122
     *
123
     * @return bool
124
     */
125
    private function hasResult(stdClass $resultRaw)
126
    {
127
        if (isset($resultRaw->agent_type) && $this->isRealResult($resultRaw->agent_type)) {
128
            return true;
129
        }
130
131
        return false;
132
    }
133
134
    /**
135
     *