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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/ControlStructures/MultiLineConditionSniff.php 1 location

@@ 107-112 (lines=6) @@
104
        // We need to work out how far indented the if statement
105
        // itself is, so we can work out how far to indent conditions.
106
        $statementIndent = 0;
107
        for ($i = ($stackPtr - 1); $i >= 0; $i--) {
108
            if ($tokens[$i]['line'] !== $tokens[$stackPtr]['line']) {
109
                $i++;
110
                break;
111
            }
112
        }
113
114
        if ($i >= 0 && $tokens[$i]['code'] === T_WHITESPACE) {
115
            $statementIndent = strlen($tokens[$i]['content']);

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Formatting/MultiLineAssignmentSniff.php 1 location

@@ 91-96 (lines=6) @@
88
        // Find the required indent based on the ident of the previous line.
89
        $assignmentIndent = 0;
90
        $prevLine         = $tokens[$prev]['line'];
91
        for ($i = ($prev - 1); $i >= 0; $i--) {
92
            if ($tokens[$i]['line'] !== $prevLine) {
93
                $i++;
94
                break;
95
            }
96
        }
97
98
        if ($tokens[$i]['code'] === T_WHITESPACE) {
99
            $assignmentIndent = strlen($tokens[$i]['content']);

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionCallSignatureSniff.php 1 location

@@ 298-303 (lines=6) @@
295
        $start = $phpcsFile->findStartOfStatement($stackPtr);
296
        foreach (array('stackPtr', 'start') as $checkToken) {
297
            $x = $$checkToken;
298
            for ($i = ($x - 1); $i >= 0; $i--) {
299
                if ($tokens[$i]['line'] !== $tokens[$x]['line']) {
300
                    $i++;
301
                    break;
302
                }
303
            }
304
305
            if ($i <= 0) {
306
                $functionIndent = 0;

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/FunctionDeclarationSniff.php 1 location

@@ 270-275 (lines=6) @@
267
        // declaration itself is, so we can work out how far to
268
        // indent parameters.
269
        $functionIndent = 0;
270
        for ($i = ($stackPtr - 1); $i >= 0; $i--) {
271
            if ($tokens[$i]['line'] !== $tokens[$stackPtr]['line']) {
272
                $i++;
273
                break;
274
            }
275
        }
276
277
        if ($tokens[$i]['code'] === T_WHITESPACE) {
278
            $functionIndent = strlen($tokens[$i]['content']);

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/WhiteSpace/ObjectOperatorIndentSniff.php 1 location

@@ 87-92 (lines=6) @@
84
        }
85
86
        // Determine correct indent.
87
        for ($i = ($varToken - 1); $i >= 0; $i--) {
88
            if ($tokens[$i]['line'] !== $tokens[$varToken]['line']) {
89
                $i++;
90
                break;
91
            }
92
        }
93
94
        $requiredIndent = 0;
95
        if ($i >= 0 && $tokens[$i]['code'] === T_WHITESPACE) {