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

component/admin/models/translation.php 2 locations

@@ 1325-1332 (lines=8) @@
1322
					$line = $stream->gets();
1323
1324
					// Comment lines
1325
					if (preg_match('/^(;.*)$/', $line, $matches))
1326
					{
1327
						$contents[] = $matches[1] . "\n";
1328
					}
1329
					else
1330
					{
1331
						break;
1332
					}
1333
				}
1334
			}
1335
@@ 1353-1356 (lines=4) @@
1350
					$contents[] = $matches[1] . "\n";
1351
				}
1352
				// Section lines
1353
				elseif (preg_match('/^\[([^\]]*)\]\s*$/', $line, $matches))
1354
				{
1355
					$contents[] = "[" . $matches[1] . "]\n";
1356
				}
1357
				// Key lines
1358
				elseif (preg_match('/^([A-Z][A-Z0-9_\*\-\.]*)\s*=/', $line, $matches))
1359
				{