Completed
Push — add/woocommerce-sync ( 0016bd )
by
unknown
57:17 queued 49:12
created
modules/videopress/class.jetpack-videopress.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 	 *
86 86
 	 * @param string $cron_name
87 87
 	 *
88
-	 * @return bool
88
+	 * @return false|null
89 89
 	 */
90 90
 	public function activate_cron( $cron_name ) {
91 91
 
Please login to merge, or discard this patch.
sync/class.jetpack-sync-settings.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -164,6 +164,9 @@  discard block
 block discarded – undo
164 164
 		return (bool) self::$is_syncing;
165 165
 	}
166 166
 
167
+	/**
168
+	 * @param boolean|null $is_syncing
169
+	 */
167 170
 	static function set_is_syncing( $is_syncing ) {
168 171
 		self::$is_syncing = $is_syncing;
169 172
 	}
@@ -172,6 +175,9 @@  discard block
 block discarded – undo
172 175
 		return (bool) self::$is_sending;
173 176
 	}
174 177
 
178
+	/**
179
+	 * @param boolean|null $is_sending
180
+	 */
175 181
 	static function set_is_sending( $is_sending ) {
176 182
 		self::$is_sending = $is_sending;
177 183
 	}
Please login to merge, or discard this patch.