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

@@ 298-302 (lines=5) @@
295
		}
296
297
		// Add the response headers to the response object.
298
		foreach ($headers as $header)
299
		{
300
			$pos = strpos($header, ':');
301
			$return->headers[trim(substr($header, 0, $pos))] = trim(substr($header, ($pos + 1)));
302
		}
303
304
		return $return;
305
	}

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

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

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

@@ 298-302 (lines=5) @@
295
		}
296
297
		// Add the response headers to the response object.
298
		foreach ($headers as $header)
299
		{
300
			$pos = strpos($header, ':');
301
			$return->headers[trim(substr($header, 0, $pos))] = trim(substr($header, ($pos + 1)));
302
		}
303
304
		return $return;
305
	}