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

lib/vCard-parser/test.php 2 locations

@@ 84-99 (lines=16) @@
81
				).'</h3>';
82
		}
83
84
		if ($vCard -> TEL)
85
		{
86
			echo '<p><h4>Phone</h4>';
87
			foreach ($vCard -> TEL as $Tel)
88
			{
89
				if (is_scalar($Tel))
90
				{
91
					echo $Tel.'<br />';
92
				}
93
				else
94
				{
95
					echo $Tel['value'].' ('.implode(', ', $Tel['type']).')<br />';
96
				}
97
			}
98
			echo '</p>';
99
		}
100
101
		if ($vCard -> EMAIL)
102
		{
@@ 101-116 (lines=16) @@
98
			echo '</p>';
99
		}
100
101
		if ($vCard -> EMAIL)
102
		{
103
			echo '<p><h4>Email</h4>';
104
			foreach ($vCard -> EMAIL as $Email)
105
			{
106
				if (is_scalar($Email))
107
				{
108
					echo $Email;
109
				}
110
				else
111
				{
112
					echo $Email['value'].' ('.implode(', ', $Email['type']).')<br />';
113
				}
114
			}
115
			echo '</p>';
116
		}
117
118
		if ($vCard -> URL)
119
		{