@@ -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 ) { |