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 3 locations

component/admin/models/translations.php 3 locations

@@ 258-265 (lines=8) @@
255
			$filter_search = $this->getState('filter.search') ? $this->getState('filter.search') : '.';
256
			$filter_origin = $this->getState('filter.origin') ? $this->getState('filter.origin') : '.';
257
258
			if (empty($filter_client))
259
			{
260
				$clients = array('site', 'administrator', 'installation');
261
			}
262
			else
263
			{
264
				$clients = array($filter_client);
265
			}
266
267
			foreach ($clients as $client)
268
			{
@@ 390-397 (lines=8) @@
387
		$filter_origin  = $this->getState('filter.origin');
388
		$filter_client  = $this->getState('filter.client');
389
390
		if (empty($filter_client))
391
		{
392
			$clients = array('site', 'administrator', 'installation');
393
		}
394
		else
395
		{
396
			$clients = array($filter_client);
397
		}
398
399
		foreach ($clients as $client)
400
		{
@@ 709-716 (lines=8) @@
706
			&& (empty($filter_type) || $filter_type == 'override')
707
			&& preg_match("/$filter_origin/", '_override') && preg_match("/$filter_search/i", 'override'))
708
		{
709
			if (empty($filter_client))
710
			{
711
				$clients = array('site', 'administrator');
712
			}
713
			else
714
			{
715
				$clients = array($filter_client);
716
			}
717
718
			foreach ($clients as $client)
719
			{