Completed
Push — add/build-connect-url ( 5d7adc...ee3bdc )
by
unknown
40:53 queued 33:52
created
packages/sync/legacy/class.jetpack-sync-settings.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -135,6 +135,9 @@  discard block
 block discarded – undo
135 135
 		self::set_is_sending( null );
136 136
 	}
137 137
 
138
+	/**
139
+	 * @param boolean|null $is_importing
140
+	 */
138 141
 	static function set_importing( $is_importing ) {
139 142
 		// set to NULL to revert to WP_IMPORTING, the standard behavior
140 143
 		self::$is_importing = $is_importing;
@@ -165,6 +168,9 @@  discard block
 block discarded – undo
165 168
 		return (bool) self::$is_syncing || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST );
166 169
 	}
167 170
 
171
+	/**
172
+	 * @param boolean|null $is_syncing
173
+	 */
168 174
 	static function set_is_syncing( $is_syncing ) {
169 175
 		self::$is_syncing = $is_syncing;
170 176
 	}
@@ -173,6 +179,9 @@  discard block
 block discarded – undo
173 179
 		return (bool) self::$is_sending;
174 180
 	}
175 181
 
182
+	/**
183
+	 * @param boolean|null $is_sending
184
+	 */
176 185
 	static function set_is_sending( $is_sending ) {
177 186
 		self::$is_sending = $is_sending;
178 187
 	}
Please login to merge, or discard this patch.
packages/sync/legacy/class.jetpack-sync-wp-replicastore.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -447,6 +447,10 @@  discard block
 block discarded – undo
447 447
 	}
448 448
 
449 449
 	// functions
450
+
451
+	/**
452
+	 * @param string $name
453
+	 */
450 454
 	public function get_callable( $name ) {
451 455
 		$value = get_option( 'jetpack_' . $name );
452 456
 
@@ -738,6 +742,9 @@  discard block
 block discarded – undo
738 742
 		return $histogram;
739 743
 	}
740 744
 
745
+	/**
746
+	 * @param string|null $id_column
747
+	 */
741 748
 	private function table_checksum( $table, $columns, $id_column, $where_sql = '1=1', $min_id = null, $max_id = null, $strip_non_ascii = true, $salt = '' ) {
742 749
 		global $wpdb;
743 750
 
@@ -791,6 +798,9 @@  discard block
 block discarded – undo
791 798
 		return 'sum';
792 799
 	}
793 800
 
801
+	/**
802
+	 * @param string $where_sql
803
+	 */
794 804
 	private function meta_count( $table, $where_sql, $min_id, $max_id ) {
795 805
 		global $wpdb;
796 806
 
Please login to merge, or discard this patch.
packages/connection/src/Manager.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * WordPress.com.
59 59
 	 *
60 60
 	 * @param Integer $user_id the user identifier.
61
-	 * @return Boolean is the user connected?
61
+	 * @return integer is the user connected?
62 62
 	 */
63 63
 	public function is_user_connected( $user_id ) {
64 64
 		return $user_id;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 * Get the wpcom user data of the current|specified connected user.
69 69
 	 *
70 70
 	 * @param Integer $user_id the user identifier.
71
-	 * @return Object the user object.
71
+	 * @return integer the user object.
72 72
 	 */
73 73
 	public function get_connected_user_data( $user_id ) {
74 74
 		return $user_id;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	 * Is the user the connection owner.
79 79
 	 *
80 80
 	 * @param Integer $user_id the user identifier.
81
-	 * @return Boolean is the user the connection owner?
81
+	 * @return integer is the user the connection owner?
82 82
 	 */
83 83
 	public function is_connection_owner( $user_id ) {
84 84
 		return $user_id;
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 	 * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' ))
400 400
 	 * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant)
401 401
 	 *
402
-	 * @param int|false    $user_id   false: Return the Blog Token. int: Return that user's User Token.
402
+	 * @param boolean    $user_id   false: Return the Blog Token. int: Return that user's User Token.
403 403
 	 * @param string|false $token_key If provided, check that the token matches the provided input.
404 404
 	 *
405 405
 	 * @return object|false
Please login to merge, or discard this patch.