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

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

@@ 259-262 (lines=4) @@
256
257
        echo "\033[0m";
258
259
        if ($totalFixable > 0) {
260
            echo PHP_EOL.str_repeat('-', $width).PHP_EOL;
261
            echo "\033[1mPHPCBF CAN FIX THE $fixableSources MARKED SOURCES AUTOMATICALLY ($totalFixable VIOLATIONS IN TOTAL)\033[0m";
262
        }
263
264
        echo PHP_EOL.str_repeat('-', $width).PHP_EOL.PHP_EOL;
265

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

@@ 175-178 (lines=4) @@
172
173
        echo "\033[0m";
174
175
        if ($totalFixable > 0) {
176
            echo PHP_EOL.str_repeat('-', $width).PHP_EOL;
177
            echo "\033[1mPHPCBF CAN FIX $totalFixable OF THESE SNIFF VIOLATIONS AUTOMATICALLY\033[0m";
178
        }
179
180
        echo PHP_EOL.str_repeat('-', $width).PHP_EOL.PHP_EOL;
181