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.
Completed
Push — master ( 02764c...e4dc90 )
by Liuta
02:47
created
includes/class-xcloner-file-system.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -186,6 +186,9 @@  discard block
 block discarded – undo
186 186
 		return $total;		
187 187
 	}
188 188
 	
189
+	/**
190
+	 * @param string $backup_name
191
+	 */
189 192
 	public function is_part($backup_name)
190 193
 	{
191 194
 		if(stristr($backup_name, "-part"))
@@ -576,6 +579,9 @@  discard block
 block discarded – undo
576 579
 		
577 580
 	}
578 581
 	
582
+	/**
583
+	 * @param string $tmp_file
584
+	 */
579 585
 	public function estimate_reading_time($tmp_file)
580 586
 	{
581 587
 		$this->logger->debug(sprintf(("Estimating file system reading time")));
@@ -634,6 +640,9 @@  discard block
 block discarded – undo
634 640
         //return ($a ($direction == 'desc' ? '>' : '<')  $b) ? -1 : 1;
635 641
 	}
636 642
 	
643
+	/**
644
+	 * @param string $field
645
+	 */
637 646
 	public function sort_by( &$array, $field, $direction = 'asc')
638 647
 	{
639 648
 		$direction = strtolower($direction);
Please login to merge, or discard this patch.