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

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

@@ 1035-1045 (lines=11) @@
1032
		}
1033
		foreach ($brd as $border => $style) {
1034
			switch ($position) {
1035
				case 'start': {
1036
					if (strpos($border, 'B') !== false) {
1037
						// remove bottom line
1038
						$newkey = str_replace('B', '', $border);
1039
						if (strlen($newkey) > 0) {
1040
							$brd[$newkey] = $style;
1041
						}
1042
						unset($brd[$border]);
1043
					}
1044
					break;
1045
				}
1046
				case 'middle': {
1047
					if (strpos($border, 'B') !== false) {
1048
						// remove bottom line
@@ 1066-1076 (lines=11) @@
1063
					}
1064
					break;
1065
				}
1066
				case 'end': {
1067
					if (strpos($border, 'T') !== false) {
1068
						// remove bottom line
1069
						$newkey = str_replace('T', '', $border);
1070
						if (strlen($newkey) > 0) {
1071
							$brd[$newkey] = $style;
1072
						}
1073
						unset($brd[$border]);
1074
					}
1075
					break;
1076
				}
1077
			}
1078
		}
1079
		return $brd;