@@ -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 ) { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | /** |
| 69 | 69 | * Returns status of WordAds approval. |
| 70 | 70 | * |
| 71 | - * @return boolean true if site is WordAds approved |
|
| 71 | + * @return string true if site is WordAds approved |
|
| 72 | 72 | * |
| 73 | 73 | * @since 4.5.0 |
| 74 | 74 | */ |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | /** |
| 84 | 84 | * Returns status of WordAds active. |
| 85 | 85 | * |
| 86 | - * @return boolean true if ads are active on site |
|
| 86 | + * @return string true if ads are active on site |
|
| 87 | 87 | * |
| 88 | 88 | * @since 4.5.0 |
| 89 | 89 | */ |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * Returns status of WordAds house ads. |
| 100 | 100 | * |
| 101 | - * @return boolean true if WP.com house ads should be shown |
|
| 101 | + * @return string true if WP.com house ads should be shown |
|
| 102 | 102 | * |
| 103 | 103 | * @since 4.5.0 |
| 104 | 104 | */ |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | /** |
| 115 | 115 | * Returns whether or not this site is safe to run ads on. |
| 116 | 116 | * |
| 117 | - * @return boolean true if ads shown not be shown on this site. |
|
| 117 | + * @return string true if ads shown not be shown on this site. |
|
| 118 | 118 | * |
| 119 | 119 | * @since 6.5.0 |
| 120 | 120 | */ |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * Convenience function for grabbing options from params->options |
| 50 | 50 | * |
| 51 | 51 | * @param string $option the option to grab |
| 52 | - * @param mixed $default (optional) |
|
| 52 | + * @param boolean $default (optional) |
|
| 53 | 53 | * @return option or $default if not set |
| 54 | 54 | * |
| 55 | 55 | * @since 4.5.0 |
@@ -494,7 +494,7 @@ discard block |
||
| 494 | 494 | /** |
| 495 | 495 | * Check the reasons to bail before we attempt to insert ads. |
| 496 | 496 | * |
| 497 | - * @return true if we should bail (don't insert ads) |
|
| 497 | + * @return boolean if we should bail (don't insert ads) |
|
| 498 | 498 | * |
| 499 | 499 | * @since 4.5.0 |
| 500 | 500 | */ |
@@ -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 ) { |
@@ -115,7 +115,7 @@ |
||
| 115 | 115 | * Mock a global function and make it return a certain value. |
| 116 | 116 | * |
| 117 | 117 | * @param string $function_name Name of the function. |
| 118 | - * @param mixed $return_value Return value of the function. |
|
| 118 | + * @param integer $return_value Return value of the function. |
|
| 119 | 119 | * @return phpmock\Mock The mock object. |
| 120 | 120 | */ |
| 121 | 121 | protected function mock_function( $function_name, $return_value = null ) { |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | * @param string $vendorPath Path to the vendor directory. |
| 161 | 161 | * @param string $basePath Base Path. |
| 162 | 162 | * |
| 163 | - * @return array $classMap |
|
| 163 | + * @return string $classMap |
|
| 164 | 164 | */ |
| 165 | 165 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
| 166 | 166 | $blacklist = null; |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | /** |
| 225 | 225 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
| 226 | 226 | * |
| 227 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
| 227 | + * @param string $classMap class map array string that is to be written out to the file. |
|
| 228 | 228 | * |
| 229 | 229 | * @return string |
| 230 | 230 | */ |
@@ -33,6 +33,9 @@ |
||
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | + /** |
|
| 37 | + * @param string $root |
|
| 38 | + */ |
|
| 36 | 39 | public function scan_dir( $root, $exclude = array() ) { |
| 37 | 40 | |
| 38 | 41 | if ( is_null( $exclude ) || ! is_array( $exclude ) ) { |
@@ -37,6 +37,9 @@ |
||
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | + /** |
|
| 41 | + * @param string $root |
|
| 42 | + */ |
|
| 40 | 43 | public function scan_dir( $root, $exclude = array() ) { |
| 41 | 44 | $filter = function ( $file, $key, $iterator ) use ( $exclude ) { |
| 42 | 45 | if ( $iterator->hasChildren() && ! in_array( $file->getFilename(), $exclude ) ) { |