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 2 locations

phpmyfaq/inc/libs/tcpdf/include/tcpdf_static.php 2 locations

@@ 2200-2205 (lines=6) @@
2197
											}
2198
											break;
2199
										}
2200
										case '^=': {
2201
											if ($val == substr($dom[$key]['attribute'][$att], 0, strlen($val))) {
2202
												$valid = true;
2203
											}
2204
											break;
2205
										}
2206
										case '$=': {
2207
											if ($val == substr($dom[$key]['attribute'][$att], -strlen($val))) {
2208
												$valid = true;
@@ 2206-2211 (lines=6) @@
2203
											}
2204
											break;
2205
										}
2206
										case '$=': {
2207
											if ($val == substr($dom[$key]['attribute'][$att], -strlen($val))) {
2208
												$valid = true;
2209
											}
2210
											break;
2211
										}
2212
										case '*=': {
2213
											if (strpos($dom[$key]['attribute'][$att], $val) !== false) {
2214
												$valid = true;