@@ -74,7 +74,7 @@ |
||
| 74 | 74 | * NOTE: If you want IMAGES, call extract( $blog_id, $post_id, ...) which will give you more/better image extraction |
| 75 | 75 | * This method will give you an error if you ask for IMAGES. |
| 76 | 76 | * |
| 77 | - * @param $content The HTML post_content of a post |
|
| 77 | + * @param string $content The HTML post_content of a post |
|
| 78 | 78 | * @param $what_to_extract (int) A mask of things to extract, e.g. Jetpack_Media_Meta_Extractor::IMAGES | Jetpack_Media_Meta_Extractor::MENTIONS |
| 79 | 79 | * @param $already_extracted (array) Previously extracted things, e.g. images from extract(), which can be used for x-referencing here |
| 80 | 80 | * @returns a structure containing metadata about the embedded things, or empty array if nothing found, or WP_Error on error |
@@ -699,8 +699,7 @@ discard block |
||
| 699 | 699 | * Render the events |
| 700 | 700 | * |
| 701 | 701 | * @param string $url (default: '') |
| 702 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 703 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 702 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 704 | 703 | */ |
| 705 | 704 | public function render( $url = '', $args = array() ) { |
| 706 | 705 | |
@@ -857,8 +856,7 @@ discard block |
||
| 857 | 856 | * Wrapper function for iCalendarReader->render() |
| 858 | 857 | * |
| 859 | 858 | * @param string $url (default: '') |
| 860 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 861 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 859 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 862 | 860 | */ |
| 863 | 861 | function icalendar_render_events( $url = '', $args = array() ) { |
| 864 | 862 | $ical = new iCalendarReader(); |
@@ -93,14 +93,24 @@ |
||
| 93 | 93 | * So that we can test. |
| 94 | 94 | */ |
| 95 | 95 | |
| 96 | + /** |
|
| 97 | + * @param string $class |
|
| 98 | + * @param string $method |
|
| 99 | + */ |
|
| 96 | 100 | public function method_exists( $class, $method ) { |
| 97 | 101 | return method_exists( $class, $method ); |
| 98 | 102 | } |
| 99 | 103 | |
| 104 | + /** |
|
| 105 | + * @param string $class |
|
| 106 | + */ |
|
| 100 | 107 | public function class_exists( $class ) { |
| 101 | 108 | return class_exists( $class ); |
| 102 | 109 | } |
| 103 | 110 | |
| 111 | + /** |
|
| 112 | + * @param string $function |
|
| 113 | + */ |
|
| 104 | 114 | public function function_exists( $function ) { |
| 105 | 115 | return function_exists( $function ); |
| 106 | 116 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * |
| 78 | 78 | * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html |
| 79 | 79 | * |
| 80 | - * @param $function string name of the function |
|
| 80 | + * @param string $function string name of the function |
|
| 81 | 81 | * @param $params array functions parameters |
| 82 | 82 | * |
| 83 | 83 | * @return void |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * |
| 95 | 95 | * @see https://www.elastic.co/guide/en/elasticsearch/guide/current/decay-functions.html |
| 96 | 96 | * |
| 97 | - * @param $function string name of the decay function - linear, exp, or gauss |
|
| 97 | + * @param string $function string name of the decay function - linear, exp, or gauss |
|
| 98 | 98 | * @param $params array The decay functions parameters, passed to ES directly |
| 99 | 99 | * |
| 100 | 100 | * @return void |
@@ -124,6 +124,9 @@ discard block |
||
| 124 | 124 | $this->query_bool_boost = $boost; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | + /** |
|
| 128 | + * @param string $aggs_name |
|
| 129 | + */ |
|
| 127 | 130 | public function add_aggs( $aggs_name, $aggs ) { |
| 128 | 131 | $this->aggs_query = true; |
| 129 | 132 | $this->aggs[$aggs_name] = $aggs; |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * @param string $url_orig Original URL. |
| 9 | 9 | * @param array $url_info Pieces of original URL. |
| 10 | 10 | * |
| 11 | - * @return bool |
|
| 11 | + * @return false|string |
|
| 12 | 12 | */ |
| 13 | 13 | function jetpack_no_qtranslate_rest_url_redirect( $url_lang, $url_orig, $url_info ) { |
| 14 | 14 | if ( false !== strpos( $url_info['wp-path'], 'wp-json/jetpack' ) ) { |
@@ -598,7 +598,6 @@ discard block |
||
| 598 | 598 | * @uses Jetpack::disconnect(); |
| 599 | 599 | * @since 4.3.0 |
| 600 | 600 | * |
| 601 | - * @param WP_REST_Request $request The request sent to the WP REST API. |
|
| 602 | 601 | * |
| 603 | 602 | * @return string|WP_Error A raw URL if the connection URL could be built; error message otherwise. |
| 604 | 603 | */ |
@@ -618,7 +617,6 @@ discard block |
||
| 618 | 617 | * |
| 619 | 618 | * @since 4.3.0 |
| 620 | 619 | * |
| 621 | - * @param WP_REST_Request $request The request sent to the WP REST API. |
|
| 622 | 620 | * |
| 623 | 621 | * @return object |
| 624 | 622 | */ |
@@ -201,7 +201,7 @@ |
||
| 201 | 201 | * should be notified, overriding the site setting. |
| 202 | 202 | * |
| 203 | 203 | * @param int $comment_id Comment ID. |
| 204 | - * @return true Always returns true. |
|
| 204 | + * @return boolean Always returns true. |
|
| 205 | 205 | */ |
| 206 | 206 | function wp_notify_moderator( $comment_id ) { |
| 207 | 207 | global $wpdb; |
@@ -58,6 +58,10 @@ |
||
| 58 | 58 | return $query->is_main_query() && $query->is_search(); |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | + /** |
|
| 62 | + * @param double $duration |
|
| 63 | + * @param boolean $was_jetpack_search |
|
| 64 | + */ |
|
| 61 | 65 | private function record_query_time( $duration, $was_jetpack_search ) { |
| 62 | 66 | $this->stats[] = array( $was_jetpack_search, intval( $duration * 1000 ) ); |
| 63 | 67 | } |
@@ -249,6 +249,9 @@ |
||
| 249 | 249 | } |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | + /** |
|
| 253 | + * @param string $access_token |
|
| 254 | + */ |
|
| 252 | 255 | private static function verify_token( $access_token ) { |
| 253 | 256 | $request = array( |
| 254 | 257 | 'headers' => array( |