@@ -166,6 +166,7 @@ discard block |
||
166 | 166 | /** |
167 | 167 | * Get attachment images for a specified post and return them. Also make sure |
168 | 168 | * their dimensions are at or above a required minimum. |
169 | + * @param integer $post_id |
|
169 | 170 | */ |
170 | 171 | static function from_attachment( $post_id, $width = 200, $height = 200 ) { |
171 | 172 | $images = array(); |
@@ -232,7 +233,7 @@ discard block |
||
232 | 233 | * format to the other images?_from_*() methods. |
233 | 234 | * |
234 | 235 | * @param int $post_id The post ID to check |
235 | - * @return Array containing details of the Featured Image, or empty array if none. |
|
236 | + * @return integer|null containing details of the Featured Image, or empty array if none. |
|
236 | 237 | */ |
237 | 238 | static function from_thumbnail( $post_id, $width = 200, $height = 200 ) { |
238 | 239 | $images = array(); |
@@ -691,7 +692,6 @@ discard block |
||
691 | 692 | * resized and cropped image. |
692 | 693 | * |
693 | 694 | * @param string $src |
694 | - * @param int $dimension |
|
695 | 695 | * @return string Transformed image URL |
696 | 696 | */ |
697 | 697 | static function fit_image_url( $src, $width, $height ) { |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | * |
746 | 746 | * @param mixed $html_or_id The HTML string to parse for images, or a post id. |
747 | 747 | * |
748 | - * @return array $html_info { |
|
748 | + * @return integer $html_info { |
|
749 | 749 | * @type string $html Post content. |
750 | 750 | * @type string $post_url Post URL. |
751 | 751 | * } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | /** |
143 | 143 | * Plugin options getter |
144 | 144 | * |
145 | - * @param string|array $option Option name. |
|
145 | + * @param string $option Option name. |
|
146 | 146 | * @param mixed $default Default value. |
147 | 147 | * |
148 | 148 | * @return mixed Option value |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * |
159 | 159 | * @param string $url Soundcloud URL. |
160 | 160 | * |
161 | - * @return boolean |
|
161 | + * @return integer |
|
162 | 162 | */ |
163 | 163 | function soundcloud_url_has_tracklist( $url ) { |
164 | 164 | return preg_match( '/^(.+?)\/(sets|groups|playlists)\/(.+?)$/', $url ); |
@@ -228,6 +228,9 @@ |
||
228 | 228 | ); |
229 | 229 | } |
230 | 230 | |
231 | + /** |
|
232 | + * @param Queue $queue |
|
233 | + */ |
|
231 | 234 | protected function get_buffer( $queue, $number_of_items ) { |
232 | 235 | $start = time(); |
233 | 236 | $max_duration = 5; // this will try to get the buffer |
@@ -148,6 +148,7 @@ discard block |
||
148 | 148 | * Helper function that is used when getting home or siteurl values. Decides |
149 | 149 | * whether to get the raw or filtered value. |
150 | 150 | * |
151 | + * @param string $url_type |
|
151 | 152 | * @return string |
152 | 153 | */ |
153 | 154 | public static function get_raw_or_filtered_url( $url_type ) { |
@@ -197,6 +198,9 @@ discard block |
||
197 | 198 | return self::get_protocol_normalized_url( 'main_network_site_url', network_site_url() ); |
198 | 199 | } |
199 | 200 | |
201 | + /** |
|
202 | + * @param string $callable |
|
203 | + */ |
|
200 | 204 | public static function get_protocol_normalized_url( $callable, $new_value ) { |
201 | 205 | $option_key = self::HTTPS_CHECK_OPTION_PREFIX . $callable; |
202 | 206 | |
@@ -236,6 +240,9 @@ discard block |
||
236 | 240 | return $value; |
237 | 241 | } |
238 | 242 | |
243 | + /** |
|
244 | + * @param string $url_function |
|
245 | + */ |
|
239 | 246 | public static function normalize_www_in_url( $option, $url_function ) { |
240 | 247 | $url = wp_parse_url( call_user_func( $url_function ) ); |
241 | 248 | $option_url = wp_parse_url( get_option( $option ) ); |
@@ -177,6 +177,9 @@ |
||
177 | 177 | $queue->add_all( $data_to_enqueue ); |
178 | 178 | } |
179 | 179 | |
180 | + /** |
|
181 | + * @param Queue $queue |
|
182 | + */ |
|
180 | 183 | function enqueue_action( $current_filter, $args, $queue ) { |
181 | 184 | // don't enqueue an action during the outbound http request - this prevents recursion |
182 | 185 | if ( Settings::is_sending() ) { |
@@ -240,6 +240,9 @@ discard block |
||
240 | 240 | return true; |
241 | 241 | } |
242 | 242 | |
243 | + /** |
|
244 | + * @param Queue_Buffer $buffer |
|
245 | + */ |
|
243 | 246 | function close( $buffer, $ids_to_remove = null ) { |
244 | 247 | $is_valid = $this->validate_checkout( $buffer ); |
245 | 248 | |
@@ -344,6 +347,9 @@ discard block |
||
344 | 347 | return false; |
345 | 348 | } |
346 | 349 | |
350 | + /** |
|
351 | + * @param string $checkout_id |
|
352 | + */ |
|
347 | 353 | private function set_checkout_id( $checkout_id ) { |
348 | 354 | global $wpdb; |
349 | 355 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * |
17 | 17 | * @param string $type The type of option to return. Defaults to 'compact'. |
18 | 18 | * |
19 | - * @return array |
|
19 | + * @return string[] |
|
20 | 20 | */ |
21 | 21 | public static function get_option_names( $type = 'compact' ) { |
22 | 22 | switch ( $type ) { |
@@ -199,6 +199,9 @@ discard block |
||
199 | 199 | return $value; |
200 | 200 | } |
201 | 201 | |
202 | + /** |
|
203 | + * @param string $name |
|
204 | + */ |
|
202 | 205 | private static function update_grouped_option( $group, $name, $value ) { |
203 | 206 | $options = get_option( self::$grouped_options[ $group ] ); |
204 | 207 | if ( ! is_array( $options ) ) { |
@@ -301,6 +304,9 @@ discard block |
||
301 | 304 | return $result; |
302 | 305 | } |
303 | 306 | |
307 | + /** |
|
308 | + * @param string $name |
|
309 | + */ |
|
304 | 310 | private static function get_grouped_option( $group, $name, $default ) { |
305 | 311 | $options = get_option( self::$grouped_options[ $group ] ); |
306 | 312 | if ( is_array( $options ) && isset( $options[ $name ] ) ) { |
@@ -420,7 +426,7 @@ discard block |
||
420 | 426 | * This function checks for a constant that, if present, will disable direct DB queries Jetpack uses to manage certain options and force Jetpack to always use Options API instead. |
421 | 427 | * Options can be selectively managed via a blacklist by filtering option names via the jetpack_disabled_raw_option filter. |
422 | 428 | * |
423 | - * @param $name Option name |
|
429 | + * @param string $name Option name |
|
424 | 430 | * |
425 | 431 | * @return bool |
426 | 432 | */ |
@@ -445,7 +451,7 @@ discard block |
||
445 | 451 | * @since 5.4.0 |
446 | 452 | * |
447 | 453 | * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com. |
448 | - * @return array An array of all options managed via the Jetpack_Options class. |
|
454 | + * @return string[] An array of all options managed via the Jetpack_Options class. |
|
449 | 455 | */ |
450 | 456 | static function get_all_jetpack_options( $strip_unsafe_options = true ) { |
451 | 457 | $jetpack_options = self::get_option_names(); |
@@ -488,7 +494,7 @@ discard block |
||
488 | 494 | * |
489 | 495 | * @since 5.4.0 |
490 | 496 | * |
491 | - * @return array |
|
497 | + * @return string[] |
|
492 | 498 | */ |
493 | 499 | static function get_all_wp_options() { |
494 | 500 | // A manual build of the wp options |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * Converts GlotPress URL into a GlotPress API URL |
24 | 24 | * |
25 | - * @param sring $url URL |
|
25 | + * @param string $url URL |
|
26 | 26 | * @return sstring API URL |
27 | 27 | */ |
28 | 28 | function apize_url( $url ) { |
@@ -183,7 +183,6 @@ |
||
183 | 183 | /** |
184 | 184 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
185 | 185 | * |
186 | - * @param mixed $identity username, user_id, or WP_user object |
|
187 | 186 | * @param string $event_name The name of the event |
188 | 187 | * @param array $properties Custom properties to send with the event |
189 | 188 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |