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

component/admin/vendor/joomla/github/src/Package/Repositories.php 2 locations

@@ 59-62 (lines=4) @@
56
			throw new \RuntimeException('Invalid type');
57
		}
58
59
		if (false == in_array($sort, array('created', 'updated', 'pushed', 'full_name')))
60
		{
61
			throw new \RuntimeException('Invalid sort field');
62
		}
63
64
		// Sort direction default: when using full_name: asc, otherwise desc.
65
		$direction = ($direction) ? : (('full_name' == $sort) ? 'asc' : 'desc');
@@ 106-109 (lines=4) @@
103
			throw new \RuntimeException('Invalid type');
104
		}
105
106
		if (false == in_array($sort, array('created', 'updated', 'pushed', 'full_name')))
107
		{
108
			throw new \RuntimeException('Invalid sort field');
109
		}
110
111
		// Sort direction default: when using full_name: asc, otherwise desc.
112
		$direction = ($direction) ? : (('full_name' == $sort) ? 'asc' : 'desc');