Completed
Push — move/xmlrpc-server-to-package ( fda3dd )
by
unknown
123:42 queued 112:37
created
packages/sync/legacy/class.jetpack-sync-module-full-sync.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -185,6 +185,9 @@  discard block
 block discarded – undo
185 185
 		do_action( 'jetpack_full_sync_end', '', $range );
186 186
 	}
187 187
 
188
+	/**
189
+	 * @param string $type
190
+	 */
188 191
 	function get_range( $type ) {
189 192
 		global $wpdb;
190 193
 		if ( ! in_array( $type, array( 'comments', 'posts' ) ) ) {
@@ -323,6 +326,9 @@  discard block
 block discarded – undo
323 326
 		$listener->get_full_sync_queue()->reset();
324 327
 	}
325 328
 
329
+	/**
330
+	 * @param integer $default
331
+	 */
326 332
 	private function get_status_option( $name, $default = null ) {
327 333
 		$value = Jetpack_Options::get_raw_option( self::STATUS_OPTION_PREFIX . "_$name", $default );
328 334
 
Please login to merge, or discard this patch.
packages/sync/legacy/class.jetpack-sync-queue.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -246,6 +246,9 @@  discard block
 block discarded – undo
246 246
 		return true;
247 247
 	}
248 248
 
249
+	/**
250
+	 * @param Jetpack_Sync_Queue_Buffer $buffer
251
+	 */
249 252
 	function close( $buffer, $ids_to_remove = null ) {
250 253
 		$is_valid = $this->validate_checkout( $buffer );
251 254
 
@@ -339,6 +342,9 @@  discard block
 block discarded – undo
339 342
 		return false;
340 343
 	}
341 344
 
345
+	/**
346
+	 * @param string $checkout_id
347
+	 */
342 348
 	private function set_checkout_id( $checkout_id ) {
343 349
 		global $wpdb;
344 350
 
Please login to merge, or discard this patch.
packages/status/tests/php/test_Status.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -143,7 +143,6 @@  discard block
 block discarded – undo
143 143
 	/**
144 144
 	 * Mock a set of filters.
145 145
 	 *
146
-	 * @param array $args Array of filters with their arguments.
147 146
 	 * @return phpmock\Mock The mock object.
148 147
 	 */
149 148
 	protected function mock_filters( $filters = array() ) {
@@ -153,8 +152,7 @@  discard block
 block discarded – undo
153 152
 	/**
154 153
 	 * Mock a set of constants.
155 154
 	 *
156
-	 * @param array $args Array of sets with constants and their respective values.
157
-	 * @return phpmock\Mock The mock object.
155
+	 * @return phpmock\Mock[] The mock object.
158 156
 	 */
159 157
 	protected function mock_constants( $constants = array() ) {
160 158
 		$prepare_constant = function( $constant ) {
@@ -171,7 +169,7 @@  discard block
 block discarded – undo
171 169
 	 * Mock a global function and make it return a certain value.
172 170
 	 *
173 171
 	 * @param string $function_name Name of the function.
174
-	 * @param mixed  $return_value  Return value of the function.
172
+	 * @param string  $return_value  Return value of the function.
175 173
 	 * @return phpmock\Mock The mock object.
176 174
 	 */
177 175
 	protected function mock_function( $function_name, $return_value = null ) {
Please login to merge, or discard this patch.
_inc/lib/plugins.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@
 block discarded – undo
95 95
 		return (array) $upgrader->skin->get_upgrade_messages();
96 96
 	}
97 97
 
98
+	 /**
99
+	  * @param string $plugin_slug
100
+	  */
98 101
 	 protected static function generate_wordpress_org_plugin_download_link( $plugin_slug ) {
99 102
 		return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip";
100 103
 	 }
Please login to merge, or discard this patch.
packages/connection/tests/php/Manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 	 * Mock a global function and make it return a certain value.
116 116
 	 *
117 117
 	 * @param string $function_name Name of the function.
118
-	 * @param mixed  $return_value  Return value of the function.
118
+	 * @param integer  $return_value  Return value of the function.
119 119
 	 * @return phpmock\Mock The mock object.
120 120
 	 */
121 121
 	protected function mock_function( $function_name, $return_value = null ) {
Please login to merge, or discard this patch.
packages/connection/src/Manager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 * Returns true if the user with the specified identifier is connected to
57 57
 	 * WordPress.com.
58 58
 	 *
59
-	 * @param Integer|Boolean $user_id the user identifier.
59
+	 * @param integer $user_id the user identifier.
60 60
 	 * @return Boolean is the user connected?
61 61
 	 */
62 62
 	public function is_user_connected( $user_id = false ) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 * Is the user the connection owner.
106 106
 	 *
107 107
 	 * @param Integer $user_id the user identifier.
108
-	 * @return Boolean is the user the connection owner?
108
+	 * @return integer is the user the connection owner?
109 109
 	 */
110 110
 	public function is_connection_owner( $user_id ) {
111 111
 		return $user_id;
Please login to merge, or discard this patch.