@@ -221,7 +221,7 @@ |
||
221 | 221 | /** |
222 | 222 | * Filter and replace HTML element. |
223 | 223 | * |
224 | - * @param array $matches Array of matches. |
|
224 | + * @param string[] $matches Array of matches. |
|
225 | 225 | */ |
226 | 226 | private static function dispatch( $matches ) { |
227 | 227 | $html = preg_replace( '%�*58;//%', '://', $matches[0] ); |
@@ -199,7 +199,7 @@ |
||
199 | 199 | * @param string $type Test type, async or direct. Optional, direct all tests. |
200 | 200 | * @param string $group Testing group to check status of. Optional, default all tests. |
201 | 201 | * |
202 | - * @return true|array True if all tests pass. Array of failed tests. |
|
202 | + * @return boolean True if all tests pass. Array of failed tests. |
|
203 | 203 | */ |
204 | 204 | public function pass( $type = 'all', $group = 'all' ) { |
205 | 205 | $results = $this->raw_results( $type, $group ); |
@@ -416,7 +416,7 @@ |
||
416 | 416 | * Only enqueue block assets when needed. |
417 | 417 | * |
418 | 418 | * @param string $type Slug of the block. |
419 | - * @param array $script_dependencies Script dependencies. Will be merged with automatically |
|
419 | + * @param string[] $script_dependencies Script dependencies. Will be merged with automatically |
|
420 | 420 | * detected script dependencies from the webpack build. |
421 | 421 | * |
422 | 422 | * @return void |
@@ -129,6 +129,9 @@ discard block |
||
129 | 129 | return apply_filters( 'jp_carousel_load_for_images_linked_to_file', false ); |
130 | 130 | } |
131 | 131 | |
132 | + /** |
|
133 | + * @param string $version |
|
134 | + */ |
|
132 | 135 | function asset_version( $version ) { |
133 | 136 | /** |
134 | 137 | * Filter the version string used when enqueuing Carousel assets. |
@@ -511,6 +514,9 @@ discard block |
||
511 | 514 | return $attr; |
512 | 515 | } |
513 | 516 | |
517 | + /** |
|
518 | + * @param string $html |
|
519 | + */ |
|
514 | 520 | function add_data_to_container( $html ) { |
515 | 521 | global $post; |
516 | 522 | if ( |
@@ -757,6 +763,9 @@ discard block |
||
757 | 763 | return ( 1 == $value ) ? 1 : 0; |
758 | 764 | } |
759 | 765 | |
766 | + /** |
|
767 | + * @param string $name |
|
768 | + */ |
|
760 | 769 | function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) { |
761 | 770 | if ( empty( $name ) ) { |
762 | 771 | return; |
@@ -772,6 +781,9 @@ discard block |
||
772 | 781 | echo '</fieldset>'; |
773 | 782 | } |
774 | 783 | |
784 | + /** |
|
785 | + * @param string $name |
|
786 | + */ |
|
775 | 787 | function settings_select( $name, $values, $extra_text = '' ) { |
776 | 788 | if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) { |
777 | 789 | return; |
@@ -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 ); |
@@ -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() ) { |
@@ -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 ) { |
@@ -95,6 +95,9 @@ |
||
95 | 95 | return (array) $upgrader->skin->get_upgrade_messages(); |
96 | 96 | } |
97 | 97 | |
98 | + /** |
|
99 | + * @param string $plugin_slug |
|
100 | + */ |
|
98 | 101 | protected static function generate_wordpress_org_plugin_download_link( $plugin_slug ) { |
99 | 102 | return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip"; |
100 | 103 | } |