Completed
Push — add/changelog-72 ( 0c5a9b...112948 )
by
unknown
215:24 queued 208:29
created
_inc/lib/class.media-summary.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -214,6 +214,9 @@  discard block
 block discarded – undo
214 214
 		}
215 215
 	}
216 216
 
217
+	/**
218
+	 * @param string $type
219
+	 */
217 220
 	static function get_video_poster( $type, $id ) {
218 221
 		if ( 'videopress' == $type ) {
219 222
 			if ( function_exists( 'video_get_highest_resolution_image_url' ) ) {
@@ -267,6 +270,9 @@  discard block
 block discarded – undo
267 270
 		return str_word_count( self::clean_text( $post_content ) );
268 271
 	}
269 272
 
273
+	/**
274
+	 * @param string $excerpt_content
275
+	 */
270 276
 	static function get_word_remaining_count( $post_content, $excerpt_content ) {
271 277
 		return str_word_count( self::clean_text( $post_content ) ) - str_word_count( self::clean_text( $excerpt_content ) );
272 278
 	}
Please login to merge, or discard this patch.
json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -244,6 +244,9 @@
 block discarded – undo
244 244
 		}
245 245
 	}
246 246
 
247
+	/**
248
+	 * @param string $capability
249
+	 */
247 250
 	protected function current_user_can( $capability, $plugin = null ) {
248 251
 		if ( $plugin ) {
249 252
 			return current_user_can( $capability, $plugin );
Please login to merge, or discard this patch.
class.jetpack-gutenberg.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@
 block discarded – undo
424 424
 	 * Only enqueue block assets when needed.
425 425
 	 *
426 426
 	 * @param string $type Slug of the block.
427
-	 * @param array  $script_dependencies An array of view-side Javascript dependencies to be enqueued.
427
+	 * @param string[]  $script_dependencies An array of view-side Javascript dependencies to be enqueued.
428 428
 	 *
429 429
 	 * @return void
430 430
 	 */
Please login to merge, or discard this patch.