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

phpmyfaq/inc/libs/tcpdf/include/barcodes/qrcode.php 2 locations

@@ 2342-2348 (lines=7) @@
2339
		if ($mode == QR_MODE_ST) {
2340
			return 0;
2341
		}
2342
		if ($version <= 9) {
2343
			$l = 0;
2344
		} elseif ($version <= 26) {
2345
			$l = 1;
2346
		} else {
2347
			$l = 2;
2348
		}
2349
		return $this->lengthTableBits[$mode][$l];
2350
	}
2351
@@ 2362-2368 (lines=7) @@
2359
		if ($mode == QR_MODE_ST) {
2360
			return 3;
2361
		}
2362
		if ($version <= 9) {
2363
			$l = 0;
2364
		} else if ($version <= 26) {
2365
			$l = 1;
2366
		} else {
2367
			$l = 2;
2368
		}
2369
		$bits = $this->lengthTableBits[$mode][$l];
2370
		$words = (1 << $bits) - 1;
2371
		if ($mode == QR_MODE_KJ) {