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

component/admin/vendor/joomla/registry/src/Format/Ini.php 2 locations

@@ 285-292 (lines=8) @@
282
						$obj->$section->$key = array();
283
					}
284
285
					if (!empty($array_key))
286
					{
287
						$obj->$section->{$key}[$array_key] = $value;
288
					}
289
					else
290
					{
291
						$obj->$section->{$key}[] = $value;
292
					}
293
				}
294
				else
295
				{
@@ 308-315 (lines=8) @@
305
						$obj->$key = array();
306
					}
307
308
					if (!empty($array_key))
309
					{
310
						$obj->{$key}[$array_key] = $value;
311
					}
312
					else
313
					{
314
						$obj->{$key}[] = $value;
315
					}
316
				}
317
				else
318
				{