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 1 location

@@ 181-185 (lines=5) @@
178
179
        $fixableSources = 0;
180
181
        if ($showSources === true) {
182
            $maxSniffWidth = ($width - 7);
183
        } else {
184
            $maxSniffWidth = ($width - 37);
185
        }
186
187
        if ($totalFixable > 0) {
188
            $maxSniffWidth -= 4;

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

@@ 215-221 (lines=7) @@
212
213
        echo "\033[0m";
214
215
        if ($showSources === true) {
216
            $maxSniffWidth = ($width - 15);
217
218
            if ($totalFixable > 0) {
219
                $maxSniffWidth -= 4;
220
            }
221
        }
222
223
        $fixableSources = 0;
224