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

component/admin/vendor/joomla/http/src/Transport/Curl.php 1 location

@@ 276-280 (lines=5) @@
273
		}
274
275
		// Add the response headers to the response object.
276
		foreach ($headers as $header)
277
		{
278
			$pos = strpos($header, ':');
279
			$return->headers[trim(substr($header, 0, $pos))] = trim(substr($header, ($pos + 1)));
280
		}
281
282
		return $return;
283
	}

component/admin/vendor/joomla/http/src/Transport/Socket.php 1 location

@@ 237-241 (lines=5) @@
234
		}
235
236
		// Add the response headers to the response object.
237
		foreach ($headers as $header)
238
		{
239
			$pos = strpos($header, ':');
240
			$return->headers[trim(substr($header, 0, $pos))] = trim(substr($header, ($pos + 1)));
241
		}
242
243
		return $return;
244
	}

component/admin/vendor/joomla/http/src/Transport/Stream.php 1 location

@@ 289-293 (lines=5) @@
286
		}
287
288
		// Add the response headers to the response object.
289
		foreach ($headers as $header)
290
		{
291
			$pos = strpos($header, ':');
292
			$return->headers[trim(substr($header, 0, $pos))] = trim(substr($header, ($pos + 1)));
293
		}
294
295
		return $return;
296
	}