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

system/database/drivers/oci8/oci8_driver.php 1 location

@@ 593-604 (lines=12) @@
590
	 * @param 	array	$values	INSERT values
591
	 * @return	string
592
	 */
593
	protected function _insert_batch($table, $keys, $values)
594
	{
595
		$keys = implode(', ', $keys);
596
		$sql = "INSERT ALL\n";
597
598
		for ($i = 0, $c = count($values); $i < $c; $i++)
599
		{
600
			$sql .= '	INTO '.$table.' ('.$keys.') VALUES '.$values[$i]."\n";
601
		}
602
603
		return $sql.'SELECT * FROM dual';
604
	}
605
606
	// --------------------------------------------------------------------
607

system/database/drivers/pdo/subdrivers/pdo_oci_driver.php 1 location

@@ 268-279 (lines=12) @@
265
	 * @param	array	$values	INSERT values
266
	 * @return 	string
267
	 */
268
	protected function _insert_batch($table, $keys, $values)
269
	{
270
		$keys = implode(', ', $keys);
271
		$sql = "INSERT ALL\n";
272
273
		for ($i = 0, $c = count($values); $i < $c; $i++)
274
		{
275
			$sql .= '	INTO '.$table.' ('.$keys.') VALUES '.$values[$i]."\n";
276
		}
277
278
		return $sql.'SELECT * FROM dual';
279
	}
280
281
	// --------------------------------------------------------------------
282