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

myth/Forensics/Profiler.php 2 locations

@@ 475-490 (lines=16) @@
472
473
			if (count($compiled_userdata))
474
			{
475
				foreach ($compiled_userdata as $key => $val)
476
				{
477
					if (is_numeric($key))
478
					{
479
						$output[$key] = "'$val'";
480
					}
481
482
					if (is_array($val) || is_object($val))
483
					{
484
						$output[$key] = htmlspecialchars(stripslashes(print_r($val, true)));
485
					}
486
					else
487
					{
488
						$output[$key] = htmlspecialchars(stripslashes($val));
489
					}
490
				}
491
			}
492
		}
493
@@ 510-525 (lines=16) @@
507
	{
508
		$output = '';
509
510
		foreach ($this->_ci_cached_vars as $key => $val)
511
		{
512
			if (is_numeric($key))
513
			{
514
				$output[$key] = "'$val'";
515
			}
516
517
			if (is_array($val) || is_object($val))
518
			{
519
				$output[$key] = htmlspecialchars(stripslashes(print_r($val, true)));
520
			}
521
			else
522
			{
523
				$output[$key] = htmlspecialchars(stripslashes($val));
524
			}
525
		}
526
527
		return $output;
528
	}