@@ -62,6 +62,10 @@ |
||
62 | 62 | return $query->is_main_query() && $query->is_search(); |
63 | 63 | } |
64 | 64 | |
65 | + /** |
|
66 | + * @param double $duration |
|
67 | + * @param boolean $was_jetpack_search |
|
68 | + */ |
|
65 | 69 | private function record_query_time( $duration, $was_jetpack_search ) { |
66 | 70 | $this->stats[] = array( $was_jetpack_search, (int) ( $duration * 1000 ) ); |
67 | 71 | } |
@@ -35,6 +35,7 @@ discard block |
||
35 | 35 | /** |
36 | 36 | * Singleton implementation |
37 | 37 | * |
38 | + * @param string|false $ip_address |
|
38 | 39 | * @return object |
39 | 40 | */ |
40 | 41 | public static function instance( $ip_address ) { |
@@ -348,6 +349,9 @@ discard block |
||
348 | 349 | return $contents; |
349 | 350 | } |
350 | 351 | |
352 | + /** |
|
353 | + * @param string $message |
|
354 | + */ |
|
351 | 355 | function display_page( $title, $message, $back_button = false, $recovery_form = false ) { |
352 | 356 | |
353 | 357 | if ( ! headers_sent() ) { |
@@ -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; |
@@ -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; |