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

vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php 1 location

@@ 192-202 (lines=11) @@
189
        }
190
191
        foreach ($this->_sourceCache as $source => $sourceData) {
192
            if ($totalFixable > 0) {
193
                echo '[';
194
                if ($sourceData['fixable'] === true) {
195
                    echo 'x';
196
                    $fixableSources++;
197
                } else {
198
                    echo ' ';
199
                }
200
201
                echo '] ';
202
            }
203
204
            if ($showSources === true) {
205
                if ($sourceData['strlen'] > $maxSniffWidth) {

vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/VersionControl.php 1 location

@@ 266-276 (lines=11) @@
263
                    $line = str_repeat(' ', (5 - strlen($count))).$count;
264
265
                    echo '         ';
266
                    if ($totalFixable > 0) {
267
                        echo '[';
268
                        if ($sourceData['fixable'] === true) {
269
                            echo 'x';
270
                            $fixableSources++;
271
                        } else {
272
                            echo ' ';
273
                        }
274
275
                        echo '] ';
276
                    }
277
278
                    echo $source;
279
                    if ($totalFixable > 0) {