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/tcpdf_static.php 2 locations

@@ 1759-1765 (lines=7) @@
1756
			}
1757
		}
1758
		// fillColor: Specifies the background color for a field.
1759
		if (isset($prop['fillColor'])) {
1760
			if (is_array($prop['fillColor'])) {
1761
				$opt['mk']['bg'] = $prop['fillColor'];
1762
			} else {
1763
				$opt['mk']['bg'] = TCPDF_COLORS::convertHTMLColorToDec($prop['fillColor'], $spot_colors);
1764
			}
1765
		}
1766
		// strokeColor: Specifies the stroke color for a field that is used to stroke the rectangle of the field with a line as large as the line width.
1767
		if (isset($prop['strokeColor'])) {
1768
			if (is_array($prop['strokeColor'])) {
@@ 1767-1773 (lines=7) @@
1764
			}
1765
		}
1766
		// strokeColor: Specifies the stroke color for a field that is used to stroke the rectangle of the field with a line as large as the line width.
1767
		if (isset($prop['strokeColor'])) {
1768
			if (is_array($prop['strokeColor'])) {
1769
				$opt['mk']['bc'] = $prop['strokeColor'];
1770
			} else {
1771
				$opt['mk']['bc'] = TCPDF_COLORS::convertHTMLColorToDec($prop['strokeColor'], $spot_colors);
1772
			}
1773
		}
1774
		// rotation: The rotation of a widget in counterclockwise increments.
1775
		if (isset($prop['rotation'])) {
1776
			$opt['mk']['r'] = $prop['rotation'];