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

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

@@ 145-160 (lines=16) @@
142
                continue;
143
            }
144
145
            if ($tokens[($i + 1)]['code'] !== T_DOC_COMMENT_WHITESPACE) {
146
                $error = 'Expected 1 space after asterisk; 0 found';
147
                $fix   = $phpcsFile->addFixableError($error, $i, 'NoSpaceAfterStar');
148
                if ($fix === true) {
149
                    $phpcsFile->fixer->addContent($i, ' ');
150
                }
151
            } else if ($tokens[($i + 2)]['code'] === T_DOC_COMMENT_TAG
152
                && $tokens[($i + 1)]['content'] !== ' '
153
            ) {
154
                $error = 'Expected 1 space after asterisk; %s found';
155
                $data  = array(strlen($tokens[($i + 1)]['content']));
156
                $fix   = $phpcsFile->addFixableError($error, $i, 'SpaceAfterStar', $data);
157
                if ($fix === true) {
158
                    $phpcsFile->fixer->replaceToken(($i + 1), ' ');
159
                }
160
            }
161
        }//end for
162
163
    }//end process()

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForLoopDeclarationSniff.php 1 location

@@ 166-184 (lines=19) @@
163
                }
164
            }
165
166
            if ($tokens[($firstSemicolon + 1)]['code'] !== T_WHITESPACE
167
                && $tokens[($firstSemicolon + 1)]['code'] !== T_SEMICOLON
168
            ) {
169
                $error = 'Expected 1 space after first semicolon of FOR loop; 0 found';
170
                $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'NoSpaceAfterFirst');
171
                if ($fix === true) {
172
                    $phpcsFile->fixer->addContent($firstSemicolon, ' ');
173
                }
174
            } else {
175
                if (strlen($tokens[($firstSemicolon + 1)]['content']) !== 1) {
176
                    $spaces = strlen($tokens[($firstSemicolon + 1)]['content']);
177
                    $error  = 'Expected 1 space after first semicolon of FOR loop; %s found';
178
                    $data   = array($spaces);
179
                    $fix    = $phpcsFile->addFixableError($error, $stackPtr, 'SpacingAfterFirst', $data);
180
                    if ($fix === true) {
181
                        $phpcsFile->fixer->replaceToken(($firstSemicolon + 1), ' ');
182
                    }
183
                }
184
            }
185
186
            $secondSemicolon = $phpcsFile->findNext(T_SEMICOLON, ($firstSemicolon + 1));
187