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

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

@@ 634-643 (lines=10) @@
631
	 * @param	string	$table
632
	 * @return	string
633
	 */
634
	protected function _delete($table)
635
	{
636
		if ($this->qb_limit)
637
		{
638
			$this->where('rownum <= ',$this->qb_limit, FALSE);
639
			$this->qb_limit = FALSE;
640
		}
641
642
		return parent::_delete($table);
643
	}
644
645
	// --------------------------------------------------------------------
646

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

@@ 291-300 (lines=10) @@
288
	 * @param	string	$table
289
	 * @return	string
290
	 */
291
	protected function _delete($table)
292
	{
293
		if ($this->qb_limit)
294
		{
295
			$this->where('rownum <= ',$this->qb_limit, FALSE);
296
			$this->qb_limit = FALSE;
297
		}
298
299
		return parent::_delete($table);
300
	}
301
302
	// --------------------------------------------------------------------
303