@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | /** |
| 43 | 43 | * Singleton implementation |
| 44 | 44 | * |
| 45 | - * @return object |
|
| 45 | + * @return Jetpack_Photon|null |
|
| 46 | 46 | */ |
| 47 | 47 | public static function instance() { |
| 48 | 48 | if ( ! is_a( self::$instance, 'Jetpack_Photon' ) ) { |
@@ -1382,7 +1382,7 @@ discard block |
||
| 1382 | 1382 | * after ourselves without breaking anyone else's filters. |
| 1383 | 1383 | * |
| 1384 | 1384 | * @internal |
| 1385 | - * @return true |
|
| 1385 | + * @return boolean |
|
| 1386 | 1386 | */ |
| 1387 | 1387 | public function override_image_downsize_in_rest_edit_context() { |
| 1388 | 1388 | return true; |
@@ -235,7 +235,7 @@ |
||
| 235 | 235 | * @param string $name Template name, available in `./templates` folder. |
| 236 | 236 | * @param array $template_props Template properties. Optional. |
| 237 | 237 | * @param bool $print Render template. True as default. |
| 238 | - * @return false|string HTML markup or false. |
|
| 238 | + * @return string|null HTML markup or false. |
|
| 239 | 239 | */ |
| 240 | 240 | function render( $name, $template_props = array(), $print = true ) { |
| 241 | 241 | if ( ! strpos( $name, '.php' ) ) { |
@@ -217,7 +217,7 @@ |
||
| 217 | 217 | * Render a slide |
| 218 | 218 | * |
| 219 | 219 | * @param array $media Media information. |
| 220 | - * @param array $index Index of the slide, first slide will be displayed by default, others hidden. |
|
| 220 | + * @param integer $index Index of the slide, first slide will be displayed by default, others hidden. |
|
| 221 | 221 | * |
| 222 | 222 | * @return string |
| 223 | 223 | */ |
@@ -326,7 +326,7 @@ |
||
| 326 | 326 | * |
| 327 | 327 | * @param string $url The URL to parse. |
| 328 | 328 | * @param integer $component Retrieve specific URL component. |
| 329 | - * @return mixed Result of parse_url |
|
| 329 | + * @return string|false Result of parse_url |
|
| 330 | 330 | */ |
| 331 | 331 | function jetpack_photon_parse_url( $url, $component = -1 ) { |
| 332 | 332 | _deprecated_function( 'jetpack_photon_parse_url', 'jetpack-7.8.0', 'wp_parse_url' ); |
@@ -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 ) { |
@@ -145,7 +145,7 @@ |
||
| 145 | 145 | * @param string $url URL of the content to be embedded. |
| 146 | 146 | * @param array $atts Shortcode attributes. |
| 147 | 147 | * |
| 148 | - * @return array $params Array of parameters to be used in Instagram query. |
|
| 148 | + * @return string $params Array of parameters to be used in Instagram query. |
|
| 149 | 149 | */ |
| 150 | 150 | function jetpack_instagram_get_allowed_parameters( $url, $atts = array() ) { |
| 151 | 151 | global $content_width; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | /** |
| 143 | 143 | * Plugin options getter |
| 144 | 144 | * |
| 145 | - * @param string|array $option Option name. |
|
| 145 | + * @param string $option Option name. |
|
| 146 | 146 | * @param mixed $default Default value. |
| 147 | 147 | * |
| 148 | 148 | * @return mixed Option value |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * |
| 159 | 159 | * @param string $url Soundcloud URL. |
| 160 | 160 | * |
| 161 | - * @return boolean |
|
| 161 | + * @return integer |
|
| 162 | 162 | */ |
| 163 | 163 | function soundcloud_url_has_tracklist( $url ) { |
| 164 | 164 | return preg_match( '/^(.+?)\/(sets|groups|playlists)\/(.+?)$/', $url ); |
@@ -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; |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | * Allows custom post types to be used by REST API. |
| 30 | 30 | * @param $post_types |
| 31 | 31 | * @see hook 'rest_api_allowed_post_types' |
| 32 | - * @return array |
|
| 32 | + * @return string[] |
|
| 33 | 33 | */ |
| 34 | 34 | function allow_rest_api_types( $post_types ) { |
| 35 | 35 | $post_types[] = self::$post_type_order; |