Completed
Push — try/e2e-reset-wp-for-every-tes... ( 90717d...3450ed )
by Yaroslav
25:55 queued 18:14
created
json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -228,6 +228,9 @@
 block discarded – undo
228 228
 		);
229 229
 	}
230 230
 
231
+	/**
232
+	 * @param Queue $queue
233
+	 */
231 234
 	protected function get_buffer( $queue, $number_of_items ) {
232 235
 		$start = time();
233 236
 		$max_duration = 5; // this will try to get the buffer
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
@@ -177,6 +177,9 @@
 block discarded – undo
177 177
 		$queue->add_all( $data_to_enqueue );
178 178
 	}
179 179
 
180
+	/**
181
+	 * @param Queue $queue
182
+	 */
180 183
 	function enqueue_action( $current_filter, $args, $queue ) {
181 184
 		// don't enqueue an action during the outbound http request - this prevents recursion
182 185
 		if ( Settings::is_sending() ) {
Please login to merge, or discard this patch.
packages/sync/src/Queue.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -240,6 +240,9 @@  discard block
 block discarded – undo
240 240
 		return true;
241 241
 	}
242 242
 
243
+	/**
244
+	 * @param Queue_Buffer $buffer
245
+	 */
243 246
 	function close( $buffer, $ids_to_remove = null ) {
244 247
 		$is_valid = $this->validate_checkout( $buffer );
245 248
 
@@ -344,6 +347,9 @@  discard block
 block discarded – undo
344 347
 		return false;
345 348
 	}
346 349
 
350
+	/**
351
+	 * @param string $checkout_id
352
+	 */
347 353
 	private function set_checkout_id( $checkout_id ) {
348 354
 		global $wpdb;
349 355
 
Please login to merge, or discard this patch.
packages/options/legacy/class.jetpack-options.php 1 patch
Doc Comments   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 	 *
17 17
 	 * @param string $type The type of option to return. Defaults to 'compact'.
18 18
 	 *
19
-	 * @return array
19
+	 * @return string[]
20 20
 	 */
21 21
 	public static function get_option_names( $type = 'compact' ) {
22 22
 		switch ( $type ) {
@@ -199,6 +199,9 @@  discard block
 block discarded – undo
199 199
 		return $value;
200 200
 	}
201 201
 
202
+	/**
203
+	 * @param string $name
204
+	 */
202 205
 	private static function update_grouped_option( $group, $name, $value ) {
203 206
 		$options = get_option( self::$grouped_options[ $group ] );
204 207
 		if ( ! is_array( $options ) ) {
@@ -301,6 +304,9 @@  discard block
 block discarded – undo
301 304
 		return $result;
302 305
 	}
303 306
 
307
+	/**
308
+	 * @param string $name
309
+	 */
304 310
 	private static function get_grouped_option( $group, $name, $default ) {
305 311
 		$options = get_option( self::$grouped_options[ $group ] );
306 312
 		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
@@ -420,7 +426,7 @@  discard block
 block discarded – undo
420 426
 	 * This function checks for a constant that, if present, will disable direct DB queries Jetpack uses to manage certain options and force Jetpack to always use Options API instead.
421 427
 	 * Options can be selectively managed via a blacklist by filtering option names via the jetpack_disabled_raw_option filter.
422 428
 	 *
423
-	 * @param $name Option name
429
+	 * @param string $name Option name
424 430
 	 *
425 431
 	 * @return bool
426 432
 	 */
@@ -445,7 +451,7 @@  discard block
 block discarded – undo
445 451
 	 * @since 5.4.0
446 452
 	 *
447 453
 	 * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com.
448
-	 * @return array An array of all options managed via the Jetpack_Options class.
454
+	 * @return string[] An array of all options managed via the Jetpack_Options class.
449 455
 	 */
450 456
 	static function get_all_jetpack_options( $strip_unsafe_options = true ) {
451 457
 		$jetpack_options            = self::get_option_names();
@@ -488,7 +494,7 @@  discard block
 block discarded – undo
488 494
 	 *
489 495
 	 * @since 5.4.0
490 496
 	 *
491
-	 * @return array
497
+	 * @return string[]
492 498
 	 */
493 499
 	static function get_all_wp_options() {
494 500
 		// A manual build of the wp options
Please login to merge, or discard this patch.
tools/import-translations.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 /**
23 23
  * Converts GlotPress URL into a GlotPress API URL
24 24
  *
25
- * @param sring $url URL
25
+ * @param string $url URL
26 26
  * @return sstring API URL
27 27
  */
28 28
 function apize_url( $url ) {
Please login to merge, or discard this patch.
packages/tracking/src/Tracking.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,6 @@
 block discarded – undo
183 183
 	/**
184 184
 	 * Record an event in Tracks - this is the preferred way to record events from PHP.
185 185
 	 *
186
-	 * @param mixed  $identity username, user_id, or WP_user object
187 186
 	 * @param string $event_name The name of the event
188 187
 	 * @param array  $properties Custom properties to send with the event
189 188
 	 * @param int    $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred
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/autoloader/src/AutoloadGenerator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 	 * @param string     $vendorPath Path to the vendor directory.
161 161
 	 * @param string     $basePath Base Path.
162 162
 	 *
163
-	 * @return array $classMap
163
+	 * @return string $classMap
164 164
 	 */
165 165
 	private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) {
166 166
 		$blacklist = null;
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 	/**
225 225
 	 * Generate the PHP that will be used in the autoload_classmap_package.php files.
226 226
 	 *
227
-	 * @param srting $classMap class map array string that is to be written out to the file.
227
+	 * @param string $classMap class map array string that is to be written out to the file.
228 228
 	 *
229 229
 	 * @return string
230 230
 	 */
Please login to merge, or discard this patch.
packages/analyzer/src/Declarations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
 		}
34 34
 	}
35 35
 
36
+	/**
37
+	 * @param string $root
38
+	 */
36 39
 	public function scan_dir( $root, $exclude = array() ) {
37 40
 
38 41
 		if ( is_null( $exclude ) || ! is_array( $exclude ) ) {
Please login to merge, or discard this patch.