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/Repository/Target/AudienceRepository.php 2 locations

@@ 151-153 (lines=3) @@
148
        $responseContent = \json_decode($stream->getContents(), true);
149
        $stream->rewind();
150
151
        if (!isset($responseContent['audiences']) || count($responseContent['audiences']) == 0) {
152
            return null;
153
        }
154
155
        if (count($responseContent['audiences']) > 1) {
156
            RepositoryException::genericFailed('Adobe Target returned more that one audiences...please check your id');
@@ 194-196 (lines=3) @@
191
192
        $result = [];
193
194
        if (!isset($responseContent['audiences']) || count($responseContent['audiences']) == 0) {
195
            return $result;
196
        }
197
198
        $audiences = $responseContent['audiences'];
199