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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/FileCommentSniff.php 1 location

@@ 114-117 (lines=4) @@
111
        $commentStart = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
112
113
        // Allow declare() statements at the top of the file.
114
        if ($tokens[$commentStart]['code'] === T_DECLARE) {
115
            $semicolon    = $phpcsFile->findNext(T_SEMICOLON, ($commentStart + 1));
116
            $commentStart = $phpcsFile->findNext(T_WHITESPACE, ($semicolon + 1), null, true);
117
        }
118
119
        // Ignore vim header.
120
        if ($tokens[$commentStart]['code'] === T_COMMENT) {

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php 1 location

@@ 149-155 (lines=7) @@
146
                        if ($returnToken === false) {
147
                            $error = 'Function return type is not void, but function has no return statement';
148
                            $phpcsFile->addError($error, $return, 'InvalidNoReturn');
149
                        } else {
150
                            $semicolon = $phpcsFile->findNext(T_WHITESPACE, ($returnToken + 1), null, true);
151
                            if ($tokens[$semicolon]['code'] === T_SEMICOLON) {
152
                                $error = 'Function return type is not void, but function is returning void here';
153
                                $phpcsFile->addError($error, $returnToken, 'InvalidReturnNotVoid');
154
                            }
155
                        }
156
                    }
157
                }//end if
158
            }//end if