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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/ForEachLoopDeclarationSniff.php 2 locations

@@ 176-192 (lines=17) @@
173
        $doubleArrow = $phpcsFile->findNext(T_DOUBLE_ARROW, $asToken, $closingBracket);
174
175
        if ($doubleArrow !== false) {
176
            if ($tokens[($doubleArrow - 1)]['code'] !== T_WHITESPACE) {
177
                $error = 'Expected 1 space before "=>"; 0 found';
178
                $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'NoSpaceBeforeArrow');
179
                if ($fix === true) {
180
                    $phpcsFile->fixer->addContentBefore($doubleArrow, ' ');
181
                }
182
            } else {
183
                if (strlen($tokens[($doubleArrow - 1)]['content']) !== 1) {
184
                    $spaces = strlen($tokens[($doubleArrow - 1)]['content']);
185
                    $error  = 'Expected 1 space before "=>"; %s found';
186
                    $data   = array($spaces);
187
                    $fix    = $phpcsFile->addFixableError($error, $stackPtr, 'SpacingBeforeArrow', $data);
188
                    if ($fix === true) {
189
                        $phpcsFile->fixer->replaceToken(($doubleArrow - 1), ' ');
190
                    }
191
                }
192
            }
193
194
            if ($tokens[($doubleArrow + 1)]['code'] !== T_WHITESPACE) {
195
                $error = 'Expected 1 space after "=>"; 0 found';
@@ 213-229 (lines=17) @@
210
            }
211
        }//end if
212
213
        if ($tokens[($asToken - 1)]['code'] !== T_WHITESPACE) {
214
            $error = 'Expected 1 space before "as"; 0 found';
215
            $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'NoSpaceBeforeAs');
216
            if ($fix === true) {
217
                $phpcsFile->fixer->addContentBefore($asToken, ' ');
218
            }
219
        } else {
220
            if (strlen($tokens[($asToken - 1)]['content']) !== 1) {
221
                $spaces = strlen($tokens[($asToken - 1)]['content']);
222
                $error  = 'Expected 1 space before "as"; %s found';
223
                $data   = array($spaces);
224
                $fix    = $phpcsFile->addFixableError($error, $stackPtr, 'SpacingBeforeAs', $data);
225
                if ($fix === true) {
226
                    $phpcsFile->fixer->replaceToken(($asToken - 1), ' ');
227
                }
228
            }
229
        }
230
231
        if ($tokens[($asToken + 1)]['code'] !== T_WHITESPACE) {
232
            $error = 'Expected 1 space after "as"; 0 found';