@@ -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 ) { |
@@ -25,6 +25,9 @@ |
||
25 | 25 | add_action( 'infinite_scroll_render', array( $this, 'crowdsignal_shortcode_infinite' ), 11 ); |
26 | 26 | } |
27 | 27 | |
28 | + /** |
|
29 | + * @param string $survey_link |
|
30 | + */ |
|
28 | 31 | private function get_async_code( array $settings, $survey_link ) { |
29 | 32 | $include = <<<CONTAINER |
30 | 33 | ( function( d, c, j ) { |
@@ -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', |
@@ -129,7 +129,7 @@ |
||
129 | 129 | * |
130 | 130 | * @param string $group Testing group to check status of. Optional, default all tests. |
131 | 131 | * |
132 | - * @return true|array True if all tests pass. Array of failed tests. |
|
132 | + * @return boolean True if all tests pass. Array of failed tests. |
|
133 | 133 | */ |
134 | 134 | public function pass( $group = 'default' ) { |
135 | 135 | $results = $this->raw_results( $group ); |
@@ -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 |
@@ -33,6 +33,9 @@ discard block |
||
33 | 33 | public $extra_headers = array(); |
34 | 34 | |
35 | 35 | /** |
36 | + * @param string $method |
|
37 | + * @param string $url |
|
38 | + * @param string $post_body |
|
36 | 39 | * @return WPCOM_JSON_API instance |
37 | 40 | */ |
38 | 41 | static function init( $method = null, $url = null, $post_body = null ) { |
@@ -335,6 +338,9 @@ discard block |
||
335 | 338 | return call_user_func_array( array( $endpoint, 'callback' ), $path_pieces ); |
336 | 339 | } |
337 | 340 | |
341 | + /** |
|
342 | + * @param integer $status_code |
|
343 | + */ |
|
338 | 344 | function output_early( $status_code, $response = null, $content_type = 'application/json' ) { |
339 | 345 | $exit = $this->exit; |
340 | 346 | $this->exit = false; |
@@ -543,11 +549,18 @@ discard block |
||
543 | 549 | return json_encode( $data ); |
544 | 550 | } |
545 | 551 | |
552 | + /** |
|
553 | + * @param string $needle |
|
554 | + */ |
|
546 | 555 | function ends_with( $haystack, $needle ) { |
547 | 556 | return $needle === substr( $haystack, -strlen( $needle ) ); |
548 | 557 | } |
549 | 558 | |
550 | 559 | // Returns the site's blog_id in the WP.com ecosystem |
560 | + |
|
561 | + /** |
|
562 | + * @return integer |
|
563 | + */ |
|
551 | 564 | function get_blog_id_for_output() { |
552 | 565 | return $this->token_details['blog_id']; |
553 | 566 | } |
@@ -570,6 +583,10 @@ discard block |
||
570 | 583 | } |
571 | 584 | |
572 | 585 | // Returns true if the specified blog ID is a restricted blog |
586 | + |
|
587 | + /** |
|
588 | + * @param integer $blog_id |
|
589 | + */ |
|
573 | 590 | function is_restricted_blog( $blog_id ) { |
574 | 591 | /** |
575 | 592 | * Filters all REST API access and return a 403 unauthorized response for all Restricted blog IDs. |
@@ -619,7 +636,7 @@ discard block |
||
619 | 636 | /** |
620 | 637 | * Counts the number of comments on a site, excluding certain comment types. |
621 | 638 | * |
622 | - * @param $post_id int Post ID. |
|
639 | + * @param integer $post_id int Post ID. |
|
623 | 640 | * @return array Array of counts, matching the output of https://developer.wordpress.org/reference/functions/get_comment_count/. |
624 | 641 | */ |
625 | 642 | public function wp_count_comments( $post_id ) { |