@@ -30,6 +30,7 @@ discard block |
||
| 30 | 30 | * Used to construct meta links in API responses |
| 31 | 31 | * |
| 32 | 32 | * @param mixed ...$args Optional arguments to be appended to URL |
| 33 | + * @param string $args |
|
| 33 | 34 | * @return string Endpoint URL |
| 34 | 35 | **/ |
| 35 | 36 | function get_link( ...$args ) { |
@@ -128,7 +129,7 @@ discard block |
||
| 128 | 129 | * This method is used in get_link() to construct meta links for API responses. |
| 129 | 130 | * |
| 130 | 131 | * @param $template_path string The generic endpoint path, e.g. /sites/%s |
| 131 | - * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
| 132 | + * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
| 132 | 133 | * @param $request_method string Request method used to access the endpoint path |
| 133 | 134 | * @return string The current version, or otherwise the maximum version available |
| 134 | 135 | */ |
@@ -271,6 +271,9 @@ discard block |
||
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | + /** |
|
| 275 | + * @param string $type |
|
| 276 | + */ |
|
| 274 | 277 | static function get_video_poster( $type, $id ) { |
| 275 | 278 | if ( 'videopress' == $type ) { |
| 276 | 279 | if ( function_exists( 'video_get_highest_resolution_image_url' ) ) { |
@@ -356,6 +359,9 @@ discard block |
||
| 356 | 359 | return (int) count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 357 | 360 | } |
| 358 | 361 | |
| 362 | + /** |
|
| 363 | + * @param string $excerpt_content |
|
| 364 | + */ |
|
| 359 | 365 | static function get_word_remaining_count( $post_content, $excerpt_content ) { |
| 360 | 366 | $content_word_count = count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 361 | 367 | $excerpt_word_count = count( self::split_content_in_words( self::clean_text( $excerpt_content ) ) ); |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * @param array $attr The attributes of the shortcode. |
| 45 | 45 | * @param array $old_attr Optional array of attributes from the old shortcode format. |
| 46 | 46 | * |
| 47 | - * @return array Width and height. |
|
| 47 | + * @return integer[] Width and height. |
|
| 48 | 48 | */ |
| 49 | 49 | function jetpack_shortcode_get_vimeo_dimensions( $attr, $old_attr = array() ) { |
| 50 | 50 | global $content_width; |
@@ -382,7 +382,7 @@ |
||
| 382 | 382 | * |
| 383 | 383 | * @param array $query_args The query args of the URL. |
| 384 | 384 | * |
| 385 | - * @return array The width and height of the shortcode. |
|
| 385 | + * @return integer[] The width and height of the shortcode. |
|
| 386 | 386 | */ |
| 387 | 387 | function jetpack_shortcode_youtube_dimensions( $query_args ) { |
| 388 | 388 | global $content_width; |
@@ -231,7 +231,7 @@ |
||
| 231 | 231 | /** |
| 232 | 232 | * Filter and replace HTML element. |
| 233 | 233 | * |
| 234 | - * @param array $matches Array of matches. |
|
| 234 | + * @param string[] $matches Array of matches. |
|
| 235 | 235 | * @param string $orig_html Original html. Returned if no results are found via $matches processing. |
| 236 | 236 | */ |
| 237 | 237 | private static function dispatch( $matches, $orig_html = null ) { |
@@ -8,6 +8,9 @@ |
||
| 8 | 8 | * - wp-content/rest-api-plugins/jetpack-endpoints/ |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | +/** |
|
| 12 | + * @param string $file_pattern |
|
| 13 | + */ |
|
| 11 | 14 | function wpcom_rest_api_v2_load_plugin_files( $file_pattern ) { |
| 12 | 15 | $plugins = glob( dirname( __FILE__ ) . '/' . $file_pattern ); |
| 13 | 16 | |
@@ -1540,6 +1540,7 @@ discard block |
||
| 1540 | 1540 | * timezone set in the options table for the blog or the GMT offset. |
| 1541 | 1541 | * |
| 1542 | 1542 | * @param datetime string $date_string Date to parse. |
| 1543 | + * @param string $date_string |
|
| 1543 | 1544 | * |
| 1544 | 1545 | * @return array( $local_time_string, $gmt_time_string ) |
| 1545 | 1546 | */ |
@@ -1649,6 +1650,10 @@ discard block |
||
| 1649 | 1650 | do_action( 'restapi_theme_init' ); |
| 1650 | 1651 | } |
| 1651 | 1652 | |
| 1653 | + /** |
|
| 1654 | + * @param string $from_hook |
|
| 1655 | + * @param string $to_hook |
|
| 1656 | + */ |
|
| 1652 | 1657 | function copy_hooks( $from_hook, $to_hook, $base_paths ) { |
| 1653 | 1658 | global $wp_filter; |
| 1654 | 1659 | foreach ( $wp_filter as $hook => $actions ) { |
@@ -2073,7 +2078,7 @@ discard block |
||
| 2073 | 2078 | * Get an array of all valid AMP origins for a blog's siteurl. |
| 2074 | 2079 | * |
| 2075 | 2080 | * @param string $siteurl Origin url of the API request. |
| 2076 | - * @return array |
|
| 2081 | + * @return string[] |
|
| 2077 | 2082 | */ |
| 2078 | 2083 | public function get_amp_cache_origins( $siteurl ) { |
| 2079 | 2084 | $host = parse_url( $siteurl, PHP_URL_HOST ); |
@@ -518,7 +518,7 @@ discard block |
||
| 518 | 518 | * Only enqueue block assets when needed. |
| 519 | 519 | * |
| 520 | 520 | * @param string $type Slug of the block. |
| 521 | - * @param array $script_dependencies Script dependencies. Will be merged with automatically |
|
| 521 | + * @param string[] $script_dependencies Script dependencies. Will be merged with automatically |
|
| 522 | 522 | * detected script dependencies from the webpack build. |
| 523 | 523 | * |
| 524 | 524 | * @return void |
@@ -866,10 +866,10 @@ discard block |
||
| 866 | 866 | * @since 8.3.0 |
| 867 | 867 | * |
| 868 | 868 | * @param string $url URL saved as an attribute in block. |
| 869 | - * @param array $allowed Array of allowed hosts for that block, or regexes to check against. |
|
| 869 | + * @param string[] $allowed Array of allowed hosts for that block, or regexes to check against. |
|
| 870 | 870 | * @param bool $is_regex Array of regexes matching the URL that could be used in block. |
| 871 | 871 | * |
| 872 | - * @return bool|string |
|
| 872 | + * @return false|string |
|
| 873 | 873 | */ |
| 874 | 874 | public static function validate_block_embed_url( $url, $allowed = array(), $is_regex = false ) { |
| 875 | 875 | if ( |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Loads an RSS feed using `fetch_feed`. |
| 59 | 59 | * |
| 60 | 60 | * @param string $feed The RSS feed URL to load. |
| 61 | - * @return SimplePie|WP_Error The RSS object or error. |
|
| 61 | + * @return string The RSS object or error. |
|
| 62 | 62 | */ |
| 63 | 63 | private static function load_feed( $feed ) { |
| 64 | 64 | $rss = fetch_feed( esc_url_raw( $feed ) ); |