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

system/database/DB_forge.php 2 locations

@@ 587-593 (lines=7) @@
584
			return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
585
		}
586
587
		for ($i = 0, $c = count($sqls); $i < $c; $i++)
588
		{
589
			if ($this->db->query($sqls[$i]) === FALSE)
590
			{
591
				return FALSE;
592
			}
593
		}
594
595
		return TRUE;
596
	}
@@ 649-655 (lines=7) @@
646
			return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
647
		}
648
649
		for ($i = 0, $c = count($sqls); $i < $c; $i++)
650
		{
651
			if ($this->db->query($sqls[$i]) === FALSE)
652
			{
653
				return FALSE;
654
			}
655
		}
656
657
		return TRUE;
658
	}