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

classes/db/DBMysqli.class.php 1 location

@@ 388-398 (lines=11) @@
385
	 * @param boolean $with_values
386
	 * @return Object
387
	 */
388
	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
389
	{
390
		if($this->use_prepared_statements != 'Y')
391
		{
392
			return parent::_executeSelectAct($queryObject, $connection);
393
		}
394
		$this->param = $queryObject->getArguments();
395
		$result = parent::_executeSelectAct($queryObject, $connection, $with_values);
396
		unset($this->param);
397
		return $result;
398
	}
399
400
	/**
401
	 * Get the ID generated in the last query

classes/db/DBMysqli_innodb.class.php 1 location

@@ 446-456 (lines=11) @@
443
	 * @param boolean $with_values
444
	 * @return Object
445
	 */
446
	function _executeSelectAct($queryObject, $connection = null, $with_values = false)
447
	{
448
		if($this->use_prepared_statements != 'Y')
449
		{
450
			return parent::_executeSelectAct($queryObject, $connection);
451
		}
452
		$this->param = $queryObject->getArguments();
453
		$result = parent::_executeSelectAct($queryObject, $connection, $with_values);
454
		unset($this->param);
455
		return $result;
456
	}
457
458
	/**
459
	 * Get the ID generated in the last query