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

vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php 2 locations

@@ 332-337 (lines=6) @@
329
                    if ($finalTokens[($stackPtr - 1)]['code'] === T_STRING) {
330
                        $newContent = $finalTokens[($stackPtr - 1)]['content'].'-'.$finalTokens[($stackPtr + 1)]['content'];
331
332
                        if (PHP_CODESNIFFER_VERBOSITY > 1) {
333
                            echo "\t\t* token is a string joiner; ignoring this and previous token".PHP_EOL;
334
                            $old = PHP_CodeSniffer::prepareForOutput($finalTokens[($stackPtr + 1)]['content']);
335
                            $new = PHP_CodeSniffer::prepareForOutput($newContent);
336
                            echo "\t\t=> token ".($stackPtr + 1)." content changed from \"$old\" to \"$new\"".PHP_EOL;
337
                        }
338
339
                        $finalTokens[($stackPtr + 1)]['content'] = $newContent;
340
                        unset($finalTokens[$stackPtr]);
@@ 350-354 (lines=5) @@
347
                    }
348
                } else if ($finalTokens[($stackPtr + 1)]['code'] === T_LNUMBER) {
349
                    // They can also be used to provide negative numbers.
350
                    if (PHP_CODESNIFFER_VERBOSITY > 1) {
351
                        echo "\t\t* token is part of a negative number; adding content to next token and ignoring *".PHP_EOL;
352
                        $content = PHP_CodeSniffer::prepareForOutput($finalTokens[($stackPtr + 1)]['content']);
353
                        echo "\t\t=> token ".($stackPtr + 1)." content changed from \"$content\" to \"-$content\"".PHP_EOL;
354
                    }
355
356
                    $finalTokens[($stackPtr + 1)]['content'] = '-'.$finalTokens[($stackPtr + 1)]['content'];
357
                    unset($finalTokens[$stackPtr]);