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

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

@@ 292-300 (lines=9) @@
289
                // opening curly bracket could be indeed the start of a style
290
                // definition.
291
                if ($asperandStart === true) {
292
                    if (PHP_CODESNIFFER_VERBOSITY > 1) {
293
                        if ($inStyleDef === true) {
294
                            echo "\t\t* style definition closed *".PHP_EOL;
295
                        }
296
297
                        if ($asperandStart === true) {
298
                            echo "\t\t* at-rule definition closed *".PHP_EOL;
299
                        }
300
                    }
301
302
                    $inStyleDef    = false;
303
                    $asperandStart = false;
@@ 312-320 (lines=9) @@
309
                }
310
                break;
311
            case T_CLOSE_CURLY_BRACKET:
312
                if (PHP_CODESNIFFER_VERBOSITY > 1) {
313
                    if ($inStyleDef === true) {
314
                        echo "\t\t* style definition closed *".PHP_EOL;
315
                    }
316
317
                    if ($asperandStart === true) {
318
                        echo "\t\t* at-rule definition closed *".PHP_EOL;
319
                    }
320
                }
321
322
                $inStyleDef    = false;
323
                $asperandStart = false;