Completed
Push — fix/full-sync-in-separate-queu... ( bf0c43...feb30a )
by
unknown
72:53 queued 59:10
created
sync/class.jetpack-sync-module-themes.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
 		return $this->enqueue_theme_support_as_action( 'jetpack_full_sync_themes' );
24 24
 	}
25 25
 
26
+	/**
27
+	 * @param string $action_name
28
+	 */
26 29
 	function enqueue_theme_support_as_action( $action_name ) {
27 30
 		global $_wp_theme_features;
28 31
 
Please login to merge, or discard this patch.
sync/class.jetpack-sync-sender.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
 		return (double) get_option( self::NEXT_SYNC_TIME_OPTION_NAME, 0 );
51 51
 	}
52 52
 
53
+	/**
54
+	 * @param integer $time
55
+	 */
53 56
 	public function set_next_sync_time( $time ) {
54 57
 		return update_option( self::NEXT_SYNC_TIME_OPTION_NAME, $time, true );
55 58
 	}
@@ -81,6 +84,9 @@  discard block
 block discarded – undo
81 84
 		return $full_sync_result || $sync_result;
82 85
 	}
83 86
 
87
+	/**
88
+	 * @param Jetpack_Sync_Queue $queue
89
+	 */
84 90
 	public function do_sync_for_queue( $queue ) {
85 91
 
86 92
 		do_action( 'jetpack_sync_before_send_queue_' . $queue->id );
Please login to merge, or discard this patch.