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

phpmyfaq/inc/libs/tcpdf/tcpdf_barcodes_1d.php 2 locations

@@ 1162-1170 (lines=9) @@
1159
									$code_data[] = 101;
1160
								}
1161
							}
1162
							for ($i = 0; $i < $seq[2]; ++$i) {
1163
								$char = $seq[1]{$i};
1164
								$char_id = ord($char);
1165
								if (($char_id >= 241) AND ($char_id <= 244)) {
1166
									$code_data[] = $fnc_a[$char_id];
1167
								} else {
1168
									$code_data[] = strpos($keys_a, $char);
1169
								}
1170
							}
1171
							break;
1172
						}
1173
						case 'B': {
@@ 1205-1213 (lines=9) @@
1202
									$code_data[] = 100;
1203
								}
1204
							}
1205
							for ($i = 0; $i < $seq[2]; ++$i) {
1206
								$char = $seq[1]{$i};
1207
								$char_id = ord($char);
1208
								if (($char_id >= 241) AND ($char_id <= 244)) {
1209
									$code_data[] = $fnc_b[$char_id];
1210
								} else {
1211
									$code_data[] = strpos($keys_b, $char);
1212
								}
1213
							}
1214
							break;
1215
						}
1216
						case 'C': {