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

vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/Source.php 2 locations

@@ 164-168 (lines=5) @@
161
        echo PHP_EOL."\033[1mPHP CODE SNIFFER VIOLATION SOURCE SUMMARY\033[0m".PHP_EOL;
162
        echo str_repeat('-', $width).PHP_EOL."\033[1m";
163
        if ($showSources === true) {
164
            if ($totalFixable > 0) {
165
                echo '    SOURCE'.str_repeat(' ', ($width - 15)).'COUNT'.PHP_EOL;
166
            } else {
167
                echo 'SOURCE'.str_repeat(' ', ($width - 11)).'COUNT'.PHP_EOL;
168
            }
169
        } else {
170
            if ($totalFixable > 0) {
171
                echo '    STANDARD  CATEGORY            SNIFF'.str_repeat(' ', ($width - 44)).'COUNT'.PHP_EOL;
@@ 169-175 (lines=7) @@
166
            } else {
167
                echo 'SOURCE'.str_repeat(' ', ($width - 11)).'COUNT'.PHP_EOL;
168
            }
169
        } else {
170
            if ($totalFixable > 0) {
171
                echo '    STANDARD  CATEGORY            SNIFF'.str_repeat(' ', ($width - 44)).'COUNT'.PHP_EOL;
172
            } else {
173
                echo 'STANDARD  CATEGORY            SNIFF'.str_repeat(' ', ($width - 40)).'COUNT'.PHP_EOL;
174
            }
175
        }
176
177
        echo "\033[0m".str_repeat('-', $width).PHP_EOL;
178