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

classes/context/Context.class.php 2 locations

@@ 1428-1435 (lines=8) @@
1425
1426
				if($do_stripslashes && version_compare(PHP_VERSION, '5.4.0', '<') && get_magic_quotes_gpc())
1427
				{
1428
					if (is_array($result[$k]))
1429
					{
1430
						array_walk_recursive($result[$k], function(&$val) { $val = stripslashes($val); });
1431
					}
1432
					else
1433
					{
1434
						$result[$k] = stripslashes($result[$k]);
1435
					}
1436
				}
1437
1438
				if(is_array($result[$k]))
@@ 1438-1445 (lines=8) @@
1435
					}
1436
				}
1437
1438
				if(is_array($result[$k]))
1439
				{
1440
					array_walk_recursive($result[$k], function(&$val) { $val = trim($val); });
1441
				}
1442
				else
1443
				{
1444
					$result[$k] = trim($result[$k]);
1445
				}
1446
			}
1447
		}
1448