@@ -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' ); |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | * |
379 | 379 | * @since 8.0.0 |
380 | 380 | * |
381 | - * @param array $url The parsed URL of the shortcode. |
|
381 | + * @param string|false $url The parsed URL of the shortcode. |
|
382 | 382 | * |
383 | 383 | * @return array|false The query args of the URL, or false. |
384 | 384 | */ |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | * |
453 | 453 | * @param array $query_args The query args of the URL. |
454 | 454 | * |
455 | - * @return array The width and height of the shortcode. |
|
455 | + * @return integer[] The width and height of the shortcode. |
|
456 | 456 | */ |
457 | 457 | function jetpack_shortcode_youtube_dimensions( $query_args ) { |
458 | 458 | global $content_width; |
@@ -174,6 +174,7 @@ discard block |
||
174 | 174 | * @since 1.3 |
175 | 175 | * @var string $guid VideoPress unique identifier |
176 | 176 | * @var int $maxwidth maximum requested video width. final width and height are calculated on VideoPress servers based on the aspect ratio of the original video upload. |
177 | + * @param string $guid |
|
177 | 178 | */ |
178 | 179 | public function __construct( $guid, $maxwidth = 640 ) { |
179 | 180 | $this->guid = $guid; |
@@ -311,7 +312,7 @@ discard block |
||
311 | 312 | * |
312 | 313 | * @since 1.2 |
313 | 314 | * @param string $url absolute URL |
314 | - * @return bool|string host component of the URL, or false if none found |
|
315 | + * @return string|false host component of the URL, or false if none found |
|
315 | 316 | */ |
316 | 317 | public static function hostname( $url ) { |
317 | 318 | return wp_parse_url( esc_url_raw( $url ), PHP_URL_HOST ); |
@@ -325,7 +325,7 @@ |
||
325 | 325 | * @access private |
326 | 326 | * |
327 | 327 | * @param string $status Comment status. |
328 | - * @return string|bool New comment_approved value, false if the status doesn't affect it. |
|
328 | + * @return string|false New comment_approved value, false if the status doesn't affect it. |
|
329 | 329 | */ |
330 | 330 | private function comment_status_to_approval_value( $status ) { |
331 | 331 | switch ( (string) $status ) { |