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

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