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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/ControlStructures/InlineControlStructureSniff.php 1 location

@@ 258-262 (lines=5) @@
255
                $endToken     = $end;
256
                $addedContent = $phpcsFile->eolChar;
257
258
                if ($tokens[$end]['code'] !== T_SEMICOLON
259
                    && $tokens[$end]['code'] !== T_CLOSE_CURLY_BRACKET
260
                ) {
261
                    $phpcsFile->fixer->addContent($end, '; ');
262
                }
263
            }
264
265
            $next = $phpcsFile->findNext(T_WHITESPACE, ($endToken + 1), null, true);

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Files/ClosingTagSniff.php 1 location

@@ 80-84 (lines=5) @@
77
                $phpcsFile->fixer->beginChangeset();
78
                $phpcsFile->fixer->replaceToken($last, $phpcsFile->eolChar);
79
                $prev = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($last - 1), null, true);
80
                if ($tokens[$prev]['code'] !== T_SEMICOLON
81
                    && $tokens[$prev]['code'] !== T_CLOSE_CURLY_BRACKET
82
                ) {
83
                    $phpcsFile->fixer->addContent($prev, ';');
84
                }
85
86
                $phpcsFile->fixer->endChangeset();
87
            }