@@ -175,7 +175,7 @@ |
||
175 | 175 | /** |
176 | 176 | * Back end function to abstract the xmlrpc function calls to wpcom. |
177 | 177 | * |
178 | - * @param $endpoint |
|
178 | + * @param string $endpoint |
|
179 | 179 | * @param $error_message |
180 | 180 | */ |
181 | 181 | function __process_ajax_proxy_request( $endpoint, $error_message ) { // phpcs:ignore |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Returns status of WordAds approval. |
68 | - * @return boolean true if site is WordAds approved |
|
68 | + * @return string true if site is WordAds approved |
|
69 | 69 | * |
70 | 70 | * @since 4.5.0 |
71 | 71 | */ |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | /** |
81 | 81 | * Returns status of WordAds active. |
82 | - * @return boolean true if ads are active on site |
|
82 | + * @return string true if ads are active on site |
|
83 | 83 | * |
84 | 84 | * @since 4.5.0 |
85 | 85 | */ |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | /** |
95 | 95 | * Returns status of WordAds house ads. |
96 | - * @return boolean true if WP.com house ads should be shown |
|
96 | + * @return string true if WP.com house ads should be shown |
|
97 | 97 | * |
98 | 98 | * @since 4.5.0 |
99 | 99 | */ |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | /** |
110 | 110 | * Returns whether or not this site is safe to run ads on. |
111 | - * @return boolean true if ads shown not be shown on this site. |
|
111 | + * @return string true if ads shown not be shown on this site. |
|
112 | 112 | * |
113 | 113 | * @since 6.5.0 |
114 | 114 | */ |
@@ -64,6 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Remove a Publicize connection |
67 | + * @param boolean $service_name |
|
67 | 68 | */ |
68 | 69 | function disconnect( $service_name, $connection_id, $_blog_id = false, $_user_id = false, $force_delete = false ) { |
69 | 70 | return Jetpack_Keyring_Service_Helper::disconnect( $service_name, $connection_id, $_blog_id, $_user_id, $force_delete ); |
@@ -559,6 +560,9 @@ discard block |
||
559 | 560 | $this->options_save_other( 'google_plus' ); |
560 | 561 | } |
561 | 562 | |
563 | + /** |
|
564 | + * @param string $service_name |
|
565 | + */ |
|
562 | 566 | function options_save_other( $service_name ) { |
563 | 567 | // Nonce check |
564 | 568 | check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] ); |
@@ -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' ) { |
@@ -112,6 +112,9 @@ discard block |
||
112 | 112 | return $html; |
113 | 113 | } |
114 | 114 | |
115 | + /** |
|
116 | + * @param string $regexp |
|
117 | + */ |
|
115 | 118 | public static function regexp_entities( $regexp ) { |
116 | 119 | return preg_replace( |
117 | 120 | '/\[\^&([^\]]+)\]\*\+/', |
@@ -150,6 +153,9 @@ discard block |
||
150 | 153 | return self::dispatch( $matches ); |
151 | 154 | } |
152 | 155 | |
156 | + /** |
|
157 | + * @param string[] $matches |
|
158 | + */ |
|
153 | 159 | static function dispatch( $matches ) { |
154 | 160 | $html = preg_replace( '%�*58;//%', '://', $matches[0] ); |
155 | 161 | $attrs = self::get_attrs( $html ); |
@@ -22,6 +22,9 @@ |
||
22 | 22 | add_action( 'infinite_scroll_render', array( $this, 'polldaddy_shortcode_infinite' ), 11 ); |
23 | 23 | } |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $survey_link |
|
27 | + */ |
|
25 | 28 | private function get_async_code( array $settings, $survey_link ) { |
26 | 29 | $embed_src = 'http://i0.poll.fm/survey.js'; |
27 | 30 | $embed_src_ssl = 'https://polldaddy.com/survey.js'; |
@@ -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( |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * Returns the number of decimal places on string representing a price. |
277 | 277 | * |
278 | 278 | * @param string $number Price to check. |
279 | - * @return number number of decimal places. |
|
279 | + * @return null|integer number of decimal places. |
|
280 | 280 | */ |
281 | 281 | private function get_decimal_places( $number ) { |
282 | 282 | $parts = explode( '.', $number ); |
@@ -377,8 +377,7 @@ discard block |
||
377 | 377 | /** |
378 | 378 | * Gets the latests field value from either the old instance or the new instance. |
379 | 379 | * |
380 | - * @param array $mixed Array of values for the new form instance. |
|
381 | - * @param array $mixed Array of values for the old form instance. |
|
380 | + * @param string $field |
|
382 | 381 | * @return mixed $mixed Field value. |
383 | 382 | */ |
384 | 383 | private function get_latest_field_value( $new_instance, $old_instance, $field ) { |
@@ -392,6 +391,7 @@ discard block |
||
392 | 391 | * it returns the default values. |
393 | 392 | * |
394 | 393 | * @param int Product Post ID. |
394 | + * @param integer $product_post_id |
|
395 | 395 | * @return array $fields Product Fields from the Product Post. |
396 | 396 | */ |
397 | 397 | private function get_product_from_post( $product_post_id ) { |
@@ -133,6 +133,9 @@ discard block |
||
133 | 133 | exit; |
134 | 134 | } |
135 | 135 | |
136 | + /** |
|
137 | + * @param string $version |
|
138 | + */ |
|
136 | 139 | function asset_version( $version ) { |
137 | 140 | /** |
138 | 141 | * Filter the version string used when enqueuing Carousel assets. |
@@ -707,6 +710,9 @@ discard block |
||
707 | 710 | return ( 1 == $value ) ? 1 : 0; |
708 | 711 | } |
709 | 712 | |
713 | + /** |
|
714 | + * @param string $name |
|
715 | + */ |
|
710 | 716 | function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) { |
711 | 717 | if ( empty( $name ) ) { |
712 | 718 | return; |
@@ -722,6 +728,9 @@ discard block |
||
722 | 728 | echo '</fieldset>'; |
723 | 729 | } |
724 | 730 | |
731 | + /** |
|
732 | + * @param string $name |
|
733 | + */ |
|
725 | 734 | function settings_select( $name, $values, $extra_text = '' ) { |
726 | 735 | if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) { |
727 | 736 | return; |