Completed
Push — add/stop-sync-filter ( 16f5d3...72a4a0 )
by
unknown
09:47
created
class.json-api-endpoints.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -1341,6 +1341,7 @@  discard block
 block discarded – undo
1341 1341
 	 * timezone set in the options table for the blog or the GMT offset.
1342 1342
 	 *
1343 1343
 	 * @param datetime string
1344
+	 * @param string $date_string
1344 1345
 	 *
1345 1346
 	 * @return array( $local_time_string, $gmt_time_string )
1346 1347
 	 */
@@ -1458,6 +1459,10 @@  discard block
 block discarded – undo
1458 1459
 		do_action( 'restapi_theme_init' );
1459 1460
 	}
1460 1461
 
1462
+	/**
1463
+	 * @param string $from_hook
1464
+	 * @param string $to_hook
1465
+	 */
1461 1466
 	function copy_hooks( $from_hook, $to_hook, $base_paths ) {
1462 1467
 		global $wp_filter;
1463 1468
 		foreach ( $wp_filter as $hook => $actions ) {
Please login to merge, or discard this patch.
sal/class.json-api-site-base.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -23,6 +23,9 @@
 block discarded – undo
23 23
 	public $blog_id;
24 24
 	public $platform;
25 25
 
26
+	/**
27
+	 * @param WPORG_Platform $platform
28
+	 */
26 29
 	public function __construct( $blog_id, $platform ) {
27 30
 		$this->blog_id = $blog_id;
28 31
 		$this->platform = $platform;
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -120,6 +120,9 @@  discard block
 block discarded – undo
120 120
 		return $response;
121 121
 	}
122 122
 
123
+	/**
124
+	 * @param string $field
125
+	 */
123 126
 	protected function get_sal_post_by( $field, $field_value, $context ) {
124 127
 		global $blog_id;
125 128
 
@@ -132,6 +135,9 @@  discard block
 block discarded – undo
132 135
 		return $post;
133 136
 	}
134 137
 
138
+	/**
139
+	 * @param string $context
140
+	 */
135 141
 	private function render_response_keys( $post, $context, $keys ) {
136 142
 		foreach ( $keys as $key ) {
137 143
 			switch ( $key ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-full.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -188,6 +188,9 @@  discard block
 block discarded – undo
188 188
 		);
189 189
 	}
190 190
 
191
+	/**
192
+	 * @param string $meta_type
193
+	 */
191 194
 	private function get_metadata( $ids, $meta_type ) {
192 195
 		global $wpdb;
193 196
 		$table = _get_meta_table( $meta_type );
@@ -214,6 +217,10 @@  discard block
 block discarded – undo
214 217
 		$this->set_status("updates", 100);
215 218
 	}
216 219
 	
220
+	/**
221
+	 * @param string $name
222
+	 * @param integer $percent
223
+	 */
217 224
 	private function set_status( $name, $percent, $count = 1, $total =1 ) {
218 225
 		set_transient( self::$status_transient_name.'_'.$name, 
219 226
 			array( 
Please login to merge, or discard this patch.
modules/post-by-email.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
 	/**
182 182
 	 * Backend function to abstract the xmlrpc function calls to wpcom.
183 183
 	 *
184
-	 * @param $endpoint
184
+	 * @param string $endpoint
185 185
 	 * @param $error_message
186 186
 	 */
187 187
 	function __process_ajax_proxy_request( $endpoint, $error_message ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-client.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -195,21 +195,36 @@  discard block
 block discarded – undo
195 195
 		$this->network_options_whitelist = $options;
196 196
 	}
197 197
 
198
+	/**
199
+	 * @param integer $size
200
+	 */
198 201
 	function set_send_buffer_memory_size( $size ) {
199 202
 		$this->checkout_memory_size = $size;
200 203
 	}
201 204
 
202 205
 	// in bytes
206
+
207
+	/**
208
+	 * @param integer $max_bytes
209
+	 */
203 210
 	function set_upload_max_bytes( $max_bytes ) {
204 211
 		$this->upload_max_bytes = $max_bytes;
205 212
 	}
206 213
 
207 214
 	// in rows
215
+
216
+	/**
217
+	 * @param integer $max_rows
218
+	 */
208 219
 	function set_upload_max_rows( $max_rows ) {
209 220
 		$this->upload_max_rows = $max_rows;
210 221
 	}
211 222
 
212 223
 	// in seconds
224
+
225
+	/**
226
+	 * @param integer $seconds
227
+	 */
213 228
 	function set_min_sync_wait_time( $seconds ) {
214 229
 		update_option( self::SYNC_THROTTLE_OPTION_NAME, $seconds, true );
215 230
 	}
@@ -476,6 +491,9 @@  discard block
 block discarded – undo
476 491
 		}
477 492
 	}
478 493
 
494
+	/**
495
+	 * @param string $action_name
496
+	 */
479 497
 	private function buffer_includes_action( $buffer, $action_name ) {
480 498
 		foreach ( $buffer->get_items() as $item ) {
481 499
 			if ( $item[0] === $action_name ) {
@@ -505,6 +523,9 @@  discard block
 block discarded – undo
505 523
 		return $post;
506 524
 	}
507 525
 
526
+	/**
527
+	 * @param string $when
528
+	 */
508 529
 	private function schedule_sync( $when ) {
509 530
 		wp_schedule_single_event( strtotime( $when ), 'jetpack_sync_actions' );
510 531
 	}
Please login to merge, or discard this patch.
_inc/lib/class.core-rest-api-endpoints.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1940,7 +1940,7 @@
 block discarded – undo
1940 1940
 	 *
1941 1941
 	 * @param string $route Regular expression for the endpoint with the module slug to return.
1942 1942
 	 *
1943
-	 * @return array
1943
+	 * @return string
1944 1944
 	 */
1945 1945
 	public static function get_module_requested( $route ) {
1946 1946
 
Please login to merge, or discard this patch.
sync/class.jetpack-sync-wp-replicastore.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -338,6 +338,10 @@
 block discarded – undo
338 338
 	}
339 339
 
340 340
 	// functions
341
+
342
+	/**
343
+	 * @param string $name
344
+	 */
341 345
 	public function get_callable( $name ) {
342 346
 		$value = get_option( 'jetpack_' . $name );
343 347
 
Please login to merge, or discard this patch.
modules/sso.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
 	 * Validate the require  two step checkbox in Settings > General
263 263
 	 *
264 264
 	 * @since 2.7
265
-	 * @return boolean
265
+	 * @return integer
266 266
 	 **/
267 267
 	public function validate_jetpack_sso_require_two_step( $input ) {
268 268
 		return ( ! empty( $input ) ) ? 1 : 0;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 	 * Validate the match by email check in Settings > General
288 288
 	 *
289 289
 	 * @since 2.9
290
-	 * @return boolean
290
+	 * @return integer
291 291
 	 **/
292 292
 	public function validate_jetpack_sso_match_by_email( $input ) {
293 293
 		return ( ! empty( $input ) ) ? 1 : 0;
Please login to merge, or discard this patch.