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

vendor/fig-r/psr2r-sniffer/PSR2R/Sniffs/Namespaces/UseDeclarationSniff.php 1 location

@@ 122-147 (lines=26) @@
119
		$end = $phpcsFile->findNext(T_SEMICOLON, ($stackPtr + 1));
120
		$next = $phpcsFile->findNext(T_WHITESPACE, ($end + 1), null, true);
121
		$diff = ($tokens[$next]['line'] - $tokens[$end]['line'] - 1);
122
		if ($diff !== 1) {
123
			if ($diff < 0) {
124
				$diff = 0;
125
			}
126
127
			$error = 'There must be one blank line after the last USE statement; %s found;';
128
			$data = [$diff];
129
			$fix = $phpcsFile->addFixableError($error, $stackPtr, 'SpaceAfterLastUse', $data);
130
			if ($fix === true) {
131
				if ($diff === 0) {
132
					$phpcsFile->fixer->addNewline($end);
133
				} else {
134
					$phpcsFile->fixer->beginChangeset();
135
					for ($i = ($end + 1); $i < $next; $i++) {
136
						if ($tokens[$i]['line'] === $tokens[$next]['line']) {
137
							break;
138
						}
139
140
						$phpcsFile->fixer->replaceToken($i, '');
141
					}
142
143
					$phpcsFile->fixer->addNewline($end);
144
					$phpcsFile->fixer->endChangeset();
145
				}
146
			}
147
		}
148
	}
149
150
}

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Namespaces/UseDeclarationSniff.php 1 location

@@ 157-182 (lines=26) @@
154
        }
155
156
        $diff = ($tokens[$next]['line'] - $tokens[$end]['line'] - 1);
157
        if ($diff !== 1) {
158
            if ($diff < 0) {
159
                $diff = 0;
160
            }
161
162
            $error = 'There must be one blank line after the last USE statement; %s found;';
163
            $data  = array($diff);
164
            $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'SpaceAfterLastUse', $data);
165
            if ($fix === true) {
166
                if ($diff === 0) {
167
                    $phpcsFile->fixer->addNewline($end);
168
                } else {
169
                    $phpcsFile->fixer->beginChangeset();
170
                    for ($i = ($end + 1); $i < $next; $i++) {
171
                        if ($tokens[$i]['line'] === $tokens[$next]['line']) {
172
                            break;
173
                        }
174
175
                        $phpcsFile->fixer->replaceToken($i, '');
176
                    }
177
178
                    $phpcsFile->fixer->addNewline($end);
179
                    $phpcsFile->fixer->endChangeset();
180
                }
181
            }
182
        }//end if
183
184
    }//end process()
185