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

@@ 1416-1423 (lines=8) @@
1413
1414
				if($do_stripslashes && version_compare(PHP_VERSION, '5.4.0', '<') && get_magic_quotes_gpc())
1415
				{
1416
					if (is_array($result[$k]))
1417
					{
1418
						array_walk_recursive($result[$k], function(&$val) { $val = stripslashes($val); });
1419
					}
1420
					else
1421
					{
1422
						$result[$k] = stripslashes($result[$k]);
1423
					}
1424
				}
1425
1426
				if(is_array($result[$k]))
@@ 1426-1433 (lines=8) @@
1423
					}
1424
				}
1425
1426
				if(is_array($result[$k]))
1427
				{
1428
					array_walk_recursive($result[$k], function(&$val) { $val = trim($val); });
1429
				}
1430
				else
1431
				{
1432
					$result[$k] = trim($result[$k]);
1433
				}
1434
			}
1435
		}
1436