Completed
Push — branch-7.5 ( 56c737 )
by Jeremy
19:49 queued 09:14
created
packages/connection/src/Manager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	 * Is the user the connection owner.
107 107
 	 *
108 108
 	 * @param Integer $user_id the user identifier.
109
-	 * @return Boolean is the user the connection owner?
109
+	 * @return integer is the user the connection owner?
110 110
 	 */
111 111
 	public function is_connection_owner( $user_id ) {
112 112
 		return $user_id;
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
 	 *
571 571
 	 * @param int|false    $user_id   false: Return the Blog Token. int: Return that user's User Token.
572 572
 	 * @param string|false $token_key If provided, check that the token matches the provided input.
573
-	 * @param bool|true    $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found.
573
+	 * @param boolean    $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found.
574 574
 	 *
575 575
 	 * @return object|false
576 576
 	 */
Please login to merge, or discard this patch.
packages/sync/src/modules/Users.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -99,6 +99,9 @@
 block discarded – undo
99 99
 		return $user;
100 100
 	}
101 101
 
102
+	/**
103
+	 * @param \WP_User|null $user
104
+	 */
102 105
 	public function expand_user( $user ) {
103 106
 		if ( ! is_object( $user ) ) {
104 107
 			return null;
Please login to merge, or discard this patch.
packages/sync/src/modules/Full_Sync.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -194,6 +194,9 @@  discard block
 block discarded – undo
194 194
 		do_action( 'jetpack_full_sync_end', '', $range );
195 195
 	}
196 196
 
197
+	/**
198
+	 * @param string $type
199
+	 */
197 200
 	function get_range( $type ) {
198 201
 		global $wpdb;
199 202
 		if ( ! in_array( $type, array( 'comments', 'posts' ) ) ) {
@@ -404,6 +407,9 @@  discard block
 block discarded – undo
404 407
 		$listener->get_full_sync_queue()->reset();
405 408
 	}
406 409
 
410
+	/**
411
+	 * @param integer $default
412
+	 */
407 413
 	private function get_status_option( $name, $default = null ) {
408 414
 		$value = \Jetpack_Options::get_raw_option( self::STATUS_OPTION_PREFIX . "_$name", $default );
409 415
 
Please login to merge, or discard this patch.
packages/sync/src/Listener.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -178,6 +178,9 @@
 block discarded – undo
178 178
 		$queue->add_all( $data_to_enqueue );
179 179
 	}
180 180
 
181
+	/**
182
+	 * @param Queue $queue
183
+	 */
181 184
 	function enqueue_action( $current_filter, $args, $queue ) {
182 185
 		// don't enqueue an action during the outbound http request - this prevents recursion
183 186
 		if ( \Jetpack_Sync_Settings::is_sending() ) {
Please login to merge, or discard this patch.
packages/sync/legacy/class.jetpack-sync-settings.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -166,6 +166,9 @@  discard block
 block discarded – undo
166 166
 		self::set_is_sending( null );
167 167
 	}
168 168
 
169
+	/**
170
+	 * @param null|boolean $is_importing
171
+	 */
169 172
 	static function set_importing( $is_importing ) {
170 173
 		// set to NULL to revert to WP_IMPORTING, the standard behavior
171 174
 		self::$is_importing = $is_importing;
@@ -200,6 +203,9 @@  discard block
 block discarded – undo
200 203
 		return (bool) self::$is_syncing || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST );
201 204
 	}
202 205
 
206
+	/**
207
+	 * @param boolean|null $is_syncing
208
+	 */
203 209
 	static function set_is_syncing( $is_syncing ) {
204 210
 		self::$is_syncing = $is_syncing;
205 211
 	}
@@ -208,6 +214,9 @@  discard block
 block discarded – undo
208 214
 		return (bool) self::$is_sending;
209 215
 	}
210 216
 
217
+	/**
218
+	 * @param null|boolean $is_sending
219
+	 */
211 220
 	static function set_is_sending( $is_sending ) {
212 221
 		self::$is_sending = $is_sending;
213 222
 	}
Please login to merge, or discard this patch.