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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php 2 locations

@@ 100-113 (lines=14) @@
97
            }
98
99
            // We have an opening and a closing tag, that lie within other content.
100
            if ($firstContent === $closingTag) {
101
                $error = 'Empty embedded PHP tag found';
102
                $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'Empty');
103
                if ($fix === true) {
104
                    $phpcsFile->fixer->beginChangeset();
105
                    for ($i = $stackPtr; $i <= $closingTag; $i++) {
106
                        $phpcsFile->fixer->replaceToken($i, '');
107
                    }
108
109
                    $phpcsFile->fixer->endChangeset();
110
                }
111
112
                return;
113
            }
114
        }//end if
115
116
        if ($tokens[$firstContent]['line'] === $tokens[$stackPtr]['line']) {
@@ 327-340 (lines=14) @@
324
        // Check that there is one, and only one space at the start of the statement.
325
        $firstContent = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), ($closeTag - 1), true);
326
327
        if ($firstContent === false) {
328
            $error = 'Empty embedded PHP tag found';
329
            $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'Empty');
330
            if ($fix === true) {
331
                $phpcsFile->fixer->beginChangeset();
332
                for ($i = $stackPtr; $i <= $closeTag; $i++) {
333
                    $phpcsFile->fixer->replaceToken($i, '');
334
                }
335
336
                $phpcsFile->fixer->endChangeset();
337
            }
338
339
            return;
340
        }
341
342
        // The open tag token always contains a single space after it.
343
        $leadingSpace = 1;