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 ( 07805d...9051f0 )
by Liuta
06:03 queued 03:27
created
includes/class-xcloner-database.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -469,6 +469,11 @@
 block discarded – undo
469 469
 	 * 		handler $fd - file handler where to write the records
470 470
 	 * @return
471 471
 	 */
472
+
473
+	/**
474
+	 * @param integer $start
475
+	 * @param integer $limit
476
+	 */
472 477
 	public function export_table($databaseName, $tableName, $start, $limit, $dumpfile)
473 478
 	{
474 479
 		$this->logger->debug(sprintf(("Exporting table  %s.%s data"), $databaseName, $tableName));
Please login to merge, or discard this patch.
includes/class-xcloner-file-transfer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
 		return ftell($fp);
88 88
 	}
89 89
 	
90
+	/**
91
+	 * @param string $filename
92
+	 */
90 93
 	function curl_file_create($filename, $mimetype = '', $postname = '') {
91 94
 		if (!function_exists('curl_file_create')) {
92 95
 	        
Please login to merge, or discard this patch.
includes/class-xcloner-remote-storage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -142,6 +142,9 @@
 block discarded – undo
142 142
 		
143 143
 	}
144 144
 	
145
+	/**
146
+	 * @param string $storage_type
147
+	 */
145 148
 	public function verify_filesystem($storage_type)
146 149
 	{
147 150
 		$method = "get_".$storage_type."_filesystem";
Please login to merge, or discard this patch.
includes/class-xcloner-archive.php 1 patch
Doc Comments   +26 added lines patch added patch discarded remove patch
@@ -45,6 +45,11 @@  discard block
 block discarded – undo
45 45
 	 * Rename backup archive
46 46
 	 * 
47 47
 	 */ 
48
+
49
+	/**
50
+	 * @param string $old_name
51
+	 * @param string $new_name
52
+	 */
48 53
 	public function rename_archive($old_name, $new_name)
49 54
 	{
50 55
 		$this->logger->info(sprintf("Renaming backup archive %s to %s", $old_name, $new_name));
@@ -109,6 +114,10 @@  discard block
 block discarded – undo
109 114
 	 * Send notification error by E-Mail
110 115
 	 * 
111 116
 	 */
117
+
118
+	/**
119
+	 * @param string $error_message
120
+	 */
112 121
 	public function send_notification_error($to, $from, $subject, $backup_name, $params, $error_message)
113 122
 	{
114 123
 		
@@ -133,6 +142,11 @@  discard block
 block discarded – undo
133 142
 	 * Send backup archive notfication by E-Mail
134 143
 	 * 
135 144
 	 */ 
145
+
146
+	/**
147
+	 * @param string $from
148
+	 * @param string $subject
149
+	 */
136 150
 	public function send_notification($to, $from, $subject, $backup_name, $params, $error_message="")
137 151
 	{
138 152
 		if(!$from)
@@ -205,6 +219,10 @@  discard block
 block discarded – undo
205 219
 	 * Incremental Backup method
206 220
 	 * 
207 221
 	 */ 
222
+
223
+	/**
224
+	 * @param integer $init
225
+	 */
208 226
 	public function start_incremental_backup($backup_params, $extra_params, $init)
209 227
 	{
210 228
 		$return = array();
@@ -413,6 +431,10 @@  discard block
 block discarded – undo
413 431
 	 * Write multipart file components
414 432
 	 * 
415 433
 	 */ 
434
+
435
+	/**
436
+	 * @param string $path
437
+	 */
416 438
 	private function write_multipart_file($path)
417 439
 	{
418 440
 		$path = $this->get_archive_name_with_extension();
@@ -472,6 +494,10 @@  discard block
 block discarded – undo
472 494
 	 * Add file to archive
473 495
 	 * 
474 496
 	 */ 
497
+
498
+	/**
499
+	 * @param integer $append
500
+	 */
475 501
 	public function add_file_to_archive($file_info, $start_at_byte, $byte_limit = 0, $append, $filesystem)
476 502
 	{
477 503
 		
Please login to merge, or discard this patch.
includes/class-xcloner-file-system.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -122,6 +122,9 @@  discard block
 block discarded – undo
122 122
 		return $this->start_filesystem->normalizeFileInfo($info);
123 123
 	}
124 124
 	
125
+	/**
126
+	 * @param string $file
127
+	 */
125 128
 	public function get_storage_path_file_info($file)
126 129
 	{
127 130
 		return $this->getMetadataFull('storage_adapter', $file);
@@ -188,6 +191,9 @@  discard block
 block discarded – undo
188 191
 		return $total;		
189 192
 	}
190 193
 	
194
+	/**
195
+	 * @param string $backup_name
196
+	 */
191 197
 	public function is_part($backup_name)
192 198
 	{
193 199
 		if(stristr($backup_name, "-part"))
@@ -578,6 +584,9 @@  discard block
 block discarded – undo
578 584
 		
579 585
 	}
580 586
 	
587
+	/**
588
+	 * @param string $tmp_file
589
+	 */
581 590
 	public function estimate_reading_time($tmp_file)
582 591
 	{
583 592
 		$this->logger->debug(sprintf(("Estimating file system reading time")));
@@ -616,6 +625,9 @@  discard block
 block discarded – undo
616 625
 		return $name;	
617 626
 	}
618 627
 	
628
+	/**
629
+	 * @param string $field
630
+	 */
619 631
 	public function sort_by( &$array, $field, $direction = 'asc')
620 632
 	{
621 633
 		if(strtolower($direction) == "desc" || $direction == SORT_DESC)
Please login to merge, or discard this patch.
includes/class-xcloner-settings.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -175,6 +175,9 @@
 block discarded – undo
175 175
 		return $wpdb->prefix;
176 176
 	}
177 177
 	
178
+	/**
179
+	 * @param string $option
180
+	 */
178 181
 	public function get_xcloner_option($option)
179 182
 	{
180 183
 		$data = get_option($option);
Please login to merge, or discard this patch.