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 ( e4dc90...7f6a9b )
by Liuta
03:01
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")));
@@ -635,6 +641,9 @@  discard block
 block discarded – undo
635 641
         //return ($a ($direction == 'desc' ? '>' : '<')  $b) ? -1 : 1;
636 642
 	}
637 643
 	
644
+	/**
645
+	 * @param string $field
646
+	 */
638 647
 	public function sort_by( &$array, $field, $direction = 'asc')
639 648
 	{
640 649
 		$this->sort_direction = strtolower($direction);
Please login to merge, or discard this patch.