@@ -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 ) { |
@@ -9,6 +9,11 @@ discard block |
||
9 | 9 | public $link; |
10 | 10 | public $grayscale; |
11 | 11 | public $columns; |
12 | + |
|
13 | + /** |
|
14 | + * @param boolean $grayscale |
|
15 | + * @param integer $columns |
|
16 | + */ |
|
12 | 17 | public function __construct( $attachments, $link, $grayscale, $columns ) { |
13 | 18 | |
14 | 19 | $this->attachments = $attachments; |
@@ -39,6 +44,9 @@ discard block |
||
39 | 44 | return $html; |
40 | 45 | } |
41 | 46 | |
47 | + /** |
|
48 | + * @param string $name |
|
49 | + */ |
|
42 | 50 | private function template( $name, $context = null ) { |
43 | 51 | if ( ! in_array( $name, self::$templates ) ) { |
44 | 52 | return; |
@@ -699,7 +699,7 @@ |
||
699 | 699 | * handlers should be copied when the theme context is loaded by the REST API. |
700 | 700 | * |
701 | 701 | * @param array $copy_dirs Copy paths with actions to be copied |
702 | - * @return array Copy paths with featured content plugin |
|
702 | + * @return string[] Copy paths with featured content plugin |
|
703 | 703 | */ |
704 | 704 | function wpcom_rest_api_featured_content_copy_plugin_actions( $copy_dirs ) { |
705 | 705 | $copy_dirs[] = __FILE__; |
@@ -40,7 +40,6 @@ |
||
40 | 40 | /** |
41 | 41 | * Prevent IS from being activated if theme doesn't support it |
42 | 42 | * |
43 | - * @param bool $can_activate |
|
44 | 43 | * @filter jetpack_can_activate_infinite-scroll |
45 | 44 | * @return bool |
46 | 45 | */ |
@@ -29,6 +29,7 @@ |
||
29 | 29 | /** |
30 | 30 | * Adds a wrapper to videos and enqueue script |
31 | 31 | * |
32 | + * @param string $html |
|
32 | 33 | * @return string |
33 | 34 | */ |
34 | 35 | function jetpack_responsive_videos_embed_html( $html ) { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * |
155 | 155 | * @since 5.3.0 |
156 | 156 | * |
157 | - * @param array $array The item to be added. |
|
157 | + * @param string $array The item to be added. |
|
158 | 158 | * |
159 | 159 | * @return bool True if the append succeeded, False if not. |
160 | 160 | */ |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @param DOMElement $parent (optional) an element to which new children should be added. |
284 | 284 | * @param DOMDocument $root (optional) the parent document. |
285 | 285 | * |
286 | - * @return string|DOMDocument The rendered XML string or an object if root element is specified. |
|
286 | + * @return null|DOMNode The rendered XML string or an object if root element is specified. |
|
287 | 287 | */ |
288 | 288 | protected function array_to_xml_string( $array, $parent = null, $root = null ) { |
289 | 289 | $return_string = false; |
@@ -100,6 +100,10 @@ discard block |
||
100 | 100 | ), menu_page_url( 'sharing', false ) ); |
101 | 101 | } |
102 | 102 | |
103 | + /** |
|
104 | + * @param string $service_name |
|
105 | + * @param string $for |
|
106 | + */ |
|
103 | 107 | static function refresh_url( $service_name, $for ) { |
104 | 108 | return add_query_arg( array( |
105 | 109 | 'action' => 'request', |
@@ -111,6 +115,10 @@ discard block |
||
111 | 115 | ), admin_url( 'options-general.php?page=sharing' ) ); |
112 | 116 | } |
113 | 117 | |
118 | + /** |
|
119 | + * @param string $service_name |
|
120 | + * @param string $id |
|
121 | + */ |
|
114 | 122 | static function disconnect_url( $service_name, $id ) { |
115 | 123 | return add_query_arg( array( |
116 | 124 | 'action' => 'delete', |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * Verifies that a user answered the math problem correctly while logging in. |
28 | 28 | * |
29 | - * @return bool Returns true if the math is correct |
|
29 | + * @return boolean|null Returns true if the math is correct |
|
30 | 30 | * @throws Error if insuffient $_POST variables are present. |
31 | 31 | * @throws Error message if the math is wrong |
32 | 32 | */ |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * Requires a user to solve a simple equation. Added to any WordPress login form. |
111 | 111 | * |
112 | - * @return VOID outputs html |
|
112 | + * @return string|null outputs html |
|
113 | 113 | */ |
114 | 114 | static function math_form() { |
115 | 115 | // Check if jpp_math_pass cookie is set and it matches valid transient |