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

system/core/Loader.php 2 locations

@@ 410-414 (lines=5) @@
407
	{
408
		$CI =& get_instance();
409
410
		if ( ! is_object($db) OR ! ($db instanceof CI_DB))
411
		{
412
			class_exists('CI_DB', FALSE) OR $this->database();
413
			$db =& $CI->db;
414
		}
415
416
		require_once(BASEPATH.'database/DB_utility.php');
417
		require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_utility.php');
@@ 441-445 (lines=5) @@
438
	public function dbforge($db = NULL, $return = FALSE)
439
	{
440
		$CI =& get_instance();
441
		if ( ! is_object($db) OR ! ($db instanceof CI_DB))
442
		{
443
			class_exists('CI_DB', FALSE) OR $this->database();
444
			$db =& $CI->db;
445
		}
446
447
		require_once(BASEPATH.'database/DB_forge.php');
448
		require_once(BASEPATH.'database/drivers/'.$db->dbdriver.'/'.$db->dbdriver.'_forge.php');