@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @param $function array A function structure to apply to the query |
87 | 87 | * |
88 | - * @return void |
|
88 | + * @return Jetpack_WPES_Query_Builder |
|
89 | 89 | */ |
90 | 90 | public function add_weighting_function( $function ) { |
91 | 91 | $this->weighting_functions[] = $function; |
@@ -100,10 +100,10 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html |
102 | 102 | * |
103 | - * @param $function string name of the function |
|
103 | + * @param string $function string name of the function |
|
104 | 104 | * @param $params array functions parameters |
105 | 105 | * |
106 | - * @return void |
|
106 | + * @return Jetpack_WPES_Query_Builder |
|
107 | 107 | */ |
108 | 108 | public function add_function( $function, $params ) { |
109 | 109 | $this->functions[ $function ][] = $params; |
@@ -119,10 +119,10 @@ discard block |
||
119 | 119 | * |
120 | 120 | * @see https://www.elastic.co/guide/en/elasticsearch/guide/current/decay-functions.html |
121 | 121 | * |
122 | - * @param $function string name of the decay function - linear, exp, or gauss |
|
122 | + * @param string $function string name of the decay function - linear, exp, or gauss |
|
123 | 123 | * @param $params array The decay functions parameters, passed to ES directly |
124 | 124 | * |
125 | - * @return void |
|
125 | + * @return Jetpack_WPES_Query_Builder |
|
126 | 126 | */ |
127 | 127 | public function add_decay( $function, $params ) { |
128 | 128 | $this->decays[ $function ][] = $params; |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @param $mode string name of how to score |
139 | 139 | * |
140 | - * @return void |
|
140 | + * @return Jetpack_WPES_Query_Builder |
|
141 | 141 | */ |
142 | 142 | public function add_score_mode_to_functions( $mode='multiply' ) { |
143 | 143 | $this->functions_score_mode = $mode; |
@@ -163,6 +163,9 @@ discard block |
||
163 | 163 | return $this; |
164 | 164 | } |
165 | 165 | |
166 | + /** |
|
167 | + * @param string $aggs_name |
|
168 | + */ |
|
166 | 169 | public function add_aggs( $aggs_name, $aggs ) { |
167 | 170 | $this->aggs_query = true; |
168 | 171 | $this->aggs[$aggs_name] = $aggs; |
@@ -75,6 +75,9 @@ |
||
75 | 75 | ); |
76 | 76 | } |
77 | 77 | |
78 | + /** |
|
79 | + * @param string $post_type |
|
80 | + */ |
|
78 | 81 | protected function localize_initial_taxonomies( $post_type ) { |
79 | 82 | /** This filter is documented in jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php */ |
80 | 83 | if ( ! apply_filters( 'rest_api_localize_response', false ) ) { |
@@ -55,7 +55,7 @@ |
||
55 | 55 | * @access private |
56 | 56 | * @param string $key |
57 | 57 | * @param array $files |
58 | - * @return void |
|
58 | + * @return WP_Error|null |
|
59 | 59 | */ |
60 | 60 | function _jetpack_require_compat_file( $key, $files ) { |
61 | 61 | if ( ! is_string( $key ) ) { |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * Update the media post grabbing the post values from |
102 | 102 | * the `attrs` parameter |
103 | 103 | * |
104 | - * @param {Number} $media_id - post media ID |
|
104 | + * @param integer $media_id - post media ID |
|
105 | 105 | * @param {Object} $attrs - `attrs` parameter sent from the client in the request body |
106 | 106 | * @return |
107 | 107 | */ |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * Save the given temporal file in a local folder. |
203 | 203 | * |
204 | 204 | * @param {Array} $file_array |
205 | - * @param {Number} $media_id |
|
205 | + * @param integer $media_id |
|
206 | 206 | * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong. |
207 | 207 | */ |
208 | 208 | private function save_temporary_file( $file_array, $media_id ) { |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | /** |
278 | 278 | * Get the image from a remote url and then save it locally. |
279 | 279 | * |
280 | - * @param {Number} $media_id - media post ID |
|
280 | + * @param integer $media_id - media post ID |
|
281 | 281 | * @param {String} $url - image URL to save locally |
282 | 282 | * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong. |
283 | 283 | */ |
@@ -505,6 +505,9 @@ |
||
505 | 505 | public $service = ''; |
506 | 506 | public $total = 0; |
507 | 507 | |
508 | + /** |
|
509 | + * @param integer $total |
|
510 | + */ |
|
508 | 511 | public function __construct( $id, $total ) { |
509 | 512 | $services = new Sharing_Service(); |
510 | 513 | $this->id = esc_html( $id ); |
@@ -172,7 +172,7 @@ |
||
172 | 172 | * @param array $post_types - other post types. |
173 | 173 | * |
174 | 174 | * @see hook 'rest_api_allowed_post_types' |
175 | - * @return array |
|
175 | + * @return string[] |
|
176 | 176 | */ |
177 | 177 | public function allow_rest_api_types( $post_types ) { |
178 | 178 | $post_types[] = self::$post_type_plan; |
@@ -87,7 +87,7 @@ |
||
87 | 87 | * Construct object from image. |
88 | 88 | * |
89 | 89 | * @param optional $type (hex, rgb, hsv) |
90 | - * @return color as a string formatted as $type |
|
90 | + * @return false|string as a string formatted as $type |
|
91 | 91 | * |
92 | 92 | */ |
93 | 93 | function color( $type = 'hex' ) { |
@@ -81,7 +81,7 @@ |
||
81 | 81 | * |
82 | 82 | * @param String $plugin_slug plugin slug string. |
83 | 83 | * @param String $current_version plugin version string. |
84 | - * @return null|bool |
|
84 | + * @return false|null |
|
85 | 85 | */ |
86 | 86 | public static function cdnize_plugin_assets( $plugin_slug, $current_version ) { |
87 | 87 | global $wp_scripts, $wp_styles; |
@@ -90,6 +90,9 @@ |
||
90 | 90 | echo $args['after_widget']; |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param string $user_id |
|
95 | + */ |
|
93 | 96 | function goodreads_user_id_exists( $user_id ) { |
94 | 97 | $url = "https://www.goodreads.com/user/show/$user_id/"; |
95 | 98 | $response = wp_remote_head( |