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

restore/xcloner_restore.php 2 locations

@@ 601-602 (lines=2) @@
598
		else
599
			throw new Exception("Could not update the SITEURL and HOME, wp-config.php file not found");
600
			
601
		if(!$mysqli->query("update ".$table_prefix."options set option_value='".($url)."' where option_name='home'"))
602
			throw new Exception(sprintf("Could not update the HOME option, error: %s\n", $mysqli->error));
603
		
604
		if(!$mysqli->query("update ".$table_prefix."options set option_value='".($url)."' where option_name='siteurl'"))
605
			throw new Exception(sprintf("Could not update the SITEURL option, error: %s\n", $mysqli->error));
@@ 604-605 (lines=2) @@
601
		if(!$mysqli->query("update ".$table_prefix."options set option_value='".($url)."' where option_name='home'"))
602
			throw new Exception(sprintf("Could not update the HOME option, error: %s\n", $mysqli->error));
603
		
604
		if(!$mysqli->query("update ".$table_prefix."options set option_value='".($url)."' where option_name='siteurl'"))
605
			throw new Exception(sprintf("Could not update the SITEURL option, error: %s\n", $mysqli->error));
606
		
607
		return true;
608
	}