@@ -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 ) { |
@@ -310,7 +310,7 @@ |
||
310 | 310 | /** |
311 | 311 | * Get the current user id |
312 | 312 | * |
313 | - * @return int |
|
313 | + * @return string |
|
314 | 314 | */ |
315 | 315 | public function get_user_id() { |
316 | 316 | if ( is_user_logged_in() ) { |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * Convenience function for grabbing options from params->options |
119 | 119 | * |
120 | 120 | * @param string $option the option to grab. |
121 | - * @param mixed $default (optional). |
|
121 | + * @param boolean $default (optional). |
|
122 | 122 | * @return option or $default if not set |
123 | 123 | * |
124 | 124 | * @since 4.5.0 |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | /** |
711 | 711 | * Check the reasons to bail before we attempt to insert ads. |
712 | 712 | * |
713 | - * @return true if we should bail (don't insert ads) |
|
713 | + * @return boolean if we should bail (don't insert ads) |
|
714 | 714 | * |
715 | 715 | * @since 4.5.0 |
716 | 716 | */ |
@@ -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 | */ |
@@ -47,7 +47,7 @@ |
||
47 | 47 | * @param array $args Widget args. |
48 | 48 | * @param array $instance The Widget instance. |
49 | 49 | * |
50 | - * @return bool|void |
|
50 | + * @return false|null |
|
51 | 51 | */ |
52 | 52 | public function widget( $args, $instance ) { |
53 | 53 | global $wordads; |
@@ -30,6 +30,7 @@ discard block |
||
30 | 30 | * Used to construct meta links in API responses |
31 | 31 | * |
32 | 32 | * @param mixed ...$args Optional arguments to be appended to URL |
33 | + * @param string $args |
|
33 | 34 | * @return string Endpoint URL |
34 | 35 | **/ |
35 | 36 | function get_link( ...$args ) { |
@@ -128,7 +129,7 @@ discard block |
||
128 | 129 | * This method is used in get_link() to construct meta links for API responses. |
129 | 130 | * |
130 | 131 | * @param $template_path string The generic endpoint path, e.g. /sites/%s |
131 | - * @param $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
132 | + * @param string $path string The current endpoint path, relative to the version, e.g. /sites/12345 |
|
132 | 133 | * @param $request_method string Request method used to access the endpoint path |
133 | 134 | * @return string The current version, or otherwise the maximum version available |
134 | 135 | */ |
@@ -16,6 +16,9 @@ discard block |
||
16 | 16 | public $context; |
17 | 17 | public $site; |
18 | 18 | |
19 | + /** |
|
20 | + * @param Jetpack_Site $site |
|
21 | + */ |
|
19 | 22 | function __construct( $site, $post, $context ) { |
20 | 23 | $this->post = $post; |
21 | 24 | $this->context = $context; |
@@ -508,6 +511,9 @@ discard block |
||
508 | 511 | return $suggestions; |
509 | 512 | } |
510 | 513 | |
514 | + /** |
|
515 | + * @param string $context |
|
516 | + */ |
|
511 | 517 | private function format_taxonomy( $taxonomy, $taxonomy_type, $context ) { |
512 | 518 | // Permissions |
513 | 519 | switch ( $context ) { |
@@ -23,6 +23,9 @@ |
||
23 | 23 | public $blog_id; |
24 | 24 | public $platform; |
25 | 25 | |
26 | + /** |
|
27 | + * @param WPORG_Platform $platform |
|
28 | + */ |
|
26 | 29 | public function __construct( $blog_id, $platform ) { |
27 | 30 | $this->blog_id = $blog_id; |
28 | 31 | $this->platform = $platform; |
@@ -4,10 +4,20 @@ discard block |
||
4 | 4 | require_once dirname( __FILE__ ) . '/class.json-api-site-base.php'; |
5 | 5 | |
6 | 6 | abstract class Abstract_Jetpack_Site extends SAL_Site { |
7 | + |
|
8 | + /** |
|
9 | + * @param string $name |
|
10 | + */ |
|
7 | 11 | abstract protected function get_constant( $name ); |
8 | 12 | |
13 | + /** |
|
14 | + * @param string $feature_name |
|
15 | + */ |
|
9 | 16 | abstract protected function current_theme_supports( $feature_name ); |
10 | 17 | |
18 | + /** |
|
19 | + * @param string $feature_name |
|
20 | + */ |
|
11 | 21 | abstract protected function get_theme_support( $feature_name ); |
12 | 22 | |
13 | 23 | abstract protected function get_mock_option( $name ); |
@@ -16,6 +26,9 @@ discard block |
||
16 | 26 | |
17 | 27 | abstract public function get_updates(); |
18 | 28 | |
29 | + /** |
|
30 | + * @return string |
|
31 | + */ |
|
19 | 32 | abstract protected function main_network_site(); |
20 | 33 | |
21 | 34 | abstract protected function wp_version(); |