@@ -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 | */ |
@@ -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 ) { |
@@ -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 ) ); |
@@ -165,6 +165,9 @@ discard block |
||
| 165 | 165 | return $this->get_atomic_cloud_site_option( 'launch-status' ); |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | + /** |
|
| 169 | + * @param string $option |
|
| 170 | + */ |
|
| 168 | 171 | function get_atomic_cloud_site_option( $option ) { |
| 169 | 172 | if ( ! jetpack_is_atomic_site() ) { |
| 170 | 173 | return false; |
@@ -233,6 +236,9 @@ discard block |
||
| 233 | 236 | return false; |
| 234 | 237 | } |
| 235 | 238 | |
| 239 | + /** |
|
| 240 | + * @param string $role |
|
| 241 | + */ |
|
| 236 | 242 | function current_user_can( $role ) { |
| 237 | 243 | return current_user_can( $role ); |
| 238 | 244 | } |
@@ -1264,7 +1264,6 @@ |
||
| 1264 | 1264 | * |
| 1265 | 1265 | * @since 4.3.0 |
| 1266 | 1266 | * |
| 1267 | - * @param WP_REST_Request $request The request sent to the WP REST API. |
|
| 1268 | 1267 | * |
| 1269 | 1268 | * @return object |
| 1270 | 1269 | */ |