@@ -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; |
@@ -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 ); |
@@ -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; |
@@ -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 | */ |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * Return an associative array of default values |
63 | 63 | * These values are used in new widgets as well as when sanitizing input. |
64 | 64 | * |
65 | - * @return array Array of default values for the Widget's options |
|
65 | + * @return string Array of default values for the Widget's options |
|
66 | 66 | */ |
67 | 67 | function defaults() { |
68 | 68 | return array( |
@@ -172,6 +172,9 @@ discard block |
||
172 | 172 | echo '</select></label></p></div>'; |
173 | 173 | } |
174 | 174 | |
175 | + /** |
|
176 | + * @param string $type |
|
177 | + */ |
|
175 | 178 | function _rss_link( $type, $args ) { |
176 | 179 | if ( 'posts' == $type ) { |
177 | 180 | $type_text = __( 'Posts', 'jetpack' ); |
@@ -595,7 +595,7 @@ |
||
595 | 595 | * |
596 | 596 | * @param array $dirty Unsantized data for the widget. |
597 | 597 | * |
598 | - * @return array Santized data. |
|
598 | + * @return integer Santized data. |
|
599 | 599 | */ |
600 | 600 | public function sanitize_instance( $dirty ) { |
601 | 601 | $now = (int) current_time( 'timestamp' ); // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested |