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

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

@@ 2380-2384 (lines=5) @@
2377
				}
2378
				if (TCPDF_FONT_DATA::$uni_type[$thischar['char']] == 'AL') {
2379
					$x = $thischar['x'];
2380
					if ($x > 0) {
2381
						$prevchar = $charAL[($x-1)];
2382
					} else {
2383
						$prevchar = false;
2384
					}
2385
					if (($x+1) < $numAL) {
2386
						$nextchar = $charAL[($x+1)];
2387
					} else {
@@ 2394-2398 (lines=5) @@
2391
					if (($prevchar !== false) AND ($prevchar['char'] == 1604) AND (in_array($thischar['char'], $alfletter))) {
2392
						$arabicarr = TCPDF_FONT_DATA::$uni_laa_array;
2393
						$laaletter = true;
2394
						if ($x > 1) {
2395
							$prevchar = $charAL[($x-2)];
2396
						} else {
2397
							$prevchar = false;
2398
						}
2399
					} else {
2400
						$arabicarr = TCPDF_FONT_DATA::$uni_arabicsubst;
2401
						$laaletter = false;