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

@@ 1461-1468 (lines=8) @@
1458
1459
				if($do_stripslashes && version_compare(PHP_VERSION, '5.4.0', '<') && get_magic_quotes_gpc())
1460
				{
1461
					if (is_array($result[$k]))
1462
					{
1463
						array_walk_recursive($result[$k], function(&$val) { $val = stripslashes($val); });
1464
					}
1465
					else
1466
					{
1467
						$result[$k] = stripslashes($result[$k]);
1468
					}
1469
				}
1470
1471
				if(is_array($result[$k]))
@@ 1471-1478 (lines=8) @@
1468
					}
1469
				}
1470
1471
				if(is_array($result[$k]))
1472
				{
1473
					array_walk_recursive($result[$k], function(&$val) { $val = trim($val); });
1474
				}
1475
				else
1476
				{
1477
					$result[$k] = trim($result[$k]);
1478
				}
1479
1480
				if($remove_hack)
1481
				{