@@ -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; |
@@ -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 |
@@ -415,7 +415,7 @@ |
||
| 415 | 415 | * |
| 416 | 416 | * @param array $connections_data |
| 417 | 417 | * |
| 418 | - * @return array { |
|
| 418 | + * @return string { |
|
| 419 | 419 | * Array of content for generating connection form. |
| 420 | 420 | * |
| 421 | 421 | * @type string HTML content of form |
@@ -682,6 +682,9 @@ |
||
| 682 | 682 | $this->options_save_other( 'linkedin' ); |
| 683 | 683 | } |
| 684 | 684 | |
| 685 | + /** |
|
| 686 | + * @param string $service_name |
|
| 687 | + */ |
|
| 685 | 688 | function options_save_other( $service_name ) { |
| 686 | 689 | // Nonce check |
| 687 | 690 | check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] ); |
@@ -244,6 +244,9 @@ |
||
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | + /** |
|
| 248 | + * @param string $capability |
|
| 249 | + */ |
|
| 247 | 250 | protected function current_user_can( $capability, $plugin = null ) { |
| 248 | 251 | if ( $plugin ) { |
| 249 | 252 | return current_user_can( $capability, $plugin ); |
@@ -543,6 +543,7 @@ |
||
| 543 | 543 | * @internal |
| 544 | 544 | * |
| 545 | 545 | * @param bool &$error Did the remote request result in an error? |
| 546 | + * @param boolean $error |
|
| 546 | 547 | * @return bool True if PSH is active. |
| 547 | 548 | */ |
| 548 | 549 | function jetpack_get_remote_is_psh_active( &$error ) { |