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

includes/class-xcloner-api.php 1 location

@@ 724-728 (lines=5) @@
721
		
722
		$backup_file = $source_backup_file;
723
		
724
		if($this->xcloner_file_system->is_multipart($backup_file))
725
		{
726
			$backup_parts = $this->xcloner_file_system->get_multipart_files($backup_file);
727
			$backup_file = $backup_parts[$return['part']];
728
		}
729
		
730
		try{
731
			$tar = new Tar();

restore/xcloner_restore.php 1 location

@@ 429-433 (lines=5) @@
426
		
427
		$backup_file = $source_backup_file;
428
		
429
		if($this->is_multipart($backup_file))
430
		{
431
			$backup_parts = $this->get_multipart_files($backup_file);
432
			$backup_file = $backup_parts[$return['part']];
433
		}
434
		
435
		try{
436
			$tar = new Tar();