@@ -9,6 +9,9 @@ |
||
| 9 | 9 | public $declaration; |
| 10 | 10 | public $invocation_root; |
| 11 | 11 | |
| 12 | + /** |
|
| 13 | + * @param string $invocation_root |
|
| 14 | + */ |
|
| 12 | 15 | function __construct( $invocation, $declaration, $invocation_root = null ) { |
| 13 | 16 | $this->invocation = $invocation; |
| 14 | 17 | $this->declaration = $declaration; |
@@ -165,7 +165,7 @@ |
||
| 165 | 165 | * @param string $url Request URL. |
| 166 | 166 | * @param mixed $body Request body. |
| 167 | 167 | * @param bool $verify_body_hash Whether to verify the body hash against the body. |
| 168 | - * @return string|WP_Error Request signature, or a WP_Error on failure. |
|
| 168 | + * @return string Request signature, or a WP_Error on failure. |
|
| 169 | 169 | */ |
| 170 | 170 | public function sign_request( $token = '', $timestamp = 0, $nonce = '', $body_hash = '', $method = '', $url = '', $body = null, $verify_body_hash = true ) { |
| 171 | 171 | if ( ! $this->secret ) { |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | /** |
| 274 | 274 | * Verifies the signature of the current request. |
| 275 | 275 | * |
| 276 | - * @return false|array |
|
| 276 | + * @return boolean |
|
| 277 | 277 | */ |
| 278 | 278 | public function verify_xml_rpc_signature() { |
| 279 | 279 | if ( is_null( $this->xmlrpc_verification ) ) { |
@@ -1029,6 +1029,7 @@ discard block |
||
| 1029 | 1029 | * @param String $action The action name. |
| 1030 | 1030 | * @param Integer $user_id The user identifier. |
| 1031 | 1031 | * @param Integer $exp Expiration time in seconds. |
| 1032 | + * @return string |
|
| 1032 | 1033 | */ |
| 1033 | 1034 | public function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
| 1034 | 1035 | $callable = $this->get_secret_callable(); |
@@ -1419,7 +1420,7 @@ discard block |
||
| 1419 | 1420 | * |
| 1420 | 1421 | * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
| 1421 | 1422 | * @param string|false $token_key If provided, check that the token matches the provided input. |
| 1422 | - * @param bool|true $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found. |
|
| 1423 | + * @param boolean $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found. |
|
| 1423 | 1424 | * |
| 1424 | 1425 | * @return object|false |
| 1425 | 1426 | */ |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | * |
| 104 | 104 | * @param string $content The current message. |
| 105 | 105 | * |
| 106 | - * @return array The new message. |
|
| 106 | + * @return string The new message. |
|
| 107 | 107 | */ |
| 108 | 108 | public static function jitm_woocommerce_services_msg( $content ) { |
| 109 | 109 | if ( ! function_exists( 'wc_get_base_location' ) ) { |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * |
| 28 | 28 | * @param string $type The type of option to return. Defaults to 'compact'. |
| 29 | 29 | * |
| 30 | - * @return array |
|
| 30 | + * @return string[] |
|
| 31 | 31 | */ |
| 32 | 32 | public static function get_option_names( $type = 'compact' ) { |
| 33 | 33 | switch ( $type ) { |
@@ -505,7 +505,7 @@ discard block |
||
| 505 | 505 | * @since 5.4.0 |
| 506 | 506 | * |
| 507 | 507 | * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com. |
| 508 | - * @return array An array of all options managed via the Jetpack_Options class. |
|
| 508 | + * @return string[] An array of all options managed via the Jetpack_Options class. |
|
| 509 | 509 | */ |
| 510 | 510 | public static function get_all_jetpack_options( $strip_unsafe_options = true ) { |
| 511 | 511 | $jetpack_options = self::get_option_names(); |
@@ -548,7 +548,7 @@ discard block |
||
| 548 | 548 | * |
| 549 | 549 | * @since 5.4.0 |
| 550 | 550 | * |
| 551 | - * @return array |
|
| 551 | + * @return string[] |
|
| 552 | 552 | */ |
| 553 | 553 | public static function get_all_wp_options() { |
| 554 | 554 | // A manual build of the wp options. |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | * @access public |
| 337 | 337 | * @static |
| 338 | 338 | * |
| 339 | - * @return bool|null False if sync is not allowed. |
|
| 339 | + * @return false|null False if sync is not allowed. |
|
| 340 | 340 | */ |
| 341 | 341 | public static function do_initial_sync() { |
| 342 | 342 | // Lets not sync if we are not suppose to. |
@@ -506,7 +506,7 @@ discard block |
||
| 506 | 506 | * @static |
| 507 | 507 | * |
| 508 | 508 | * @param array $sync_modules The list of sync modules declared prior to this filter. |
| 509 | - * @return array A list of sync modules that now includes Woo's modules. |
|
| 509 | + * @return string[] A list of sync modules that now includes Woo's modules. |
|
| 510 | 510 | */ |
| 511 | 511 | public static function add_woocommerce_sync_module( $sync_modules ) { |
| 512 | 512 | $sync_modules[] = 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce'; |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | * @static |
| 534 | 534 | * |
| 535 | 535 | * @param array $sync_modules The list of sync modules declared prior to this filer. |
| 536 | - * @return array A list of sync modules that now includes WP Super Cache's modules. |
|
| 536 | + * @return string[] A list of sync modules that now includes WP Super Cache's modules. |
|
| 537 | 537 | */ |
| 538 | 538 | public static function add_wp_super_cache_sync_module( $sync_modules ) { |
| 539 | 539 | $sync_modules[] = 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache'; |
@@ -380,7 +380,7 @@ |
||
| 380 | 380 | * |
| 381 | 381 | * @param string $option Option value from the site. |
| 382 | 382 | * @param callable $url_function Function retrieving the URL to normalize. |
| 383 | - * @return mixed|string URL. |
|
| 383 | + * @return callable URL. |
|
| 384 | 384 | */ |
| 385 | 385 | public static function normalize_www_in_url( $option, $url_function ) { |
| 386 | 386 | $url = wp_parse_url( call_user_func( $url_function ) ); |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | /** |
| 77 | 77 | * Wraps JSON |
| 78 | 78 | * |
| 79 | - * @param object|array $any Wrapping value. |
|
| 79 | + * @param string $any Wrapping value. |
|
| 80 | 80 | * @param array $seen_nodes Seen nodes. |
| 81 | 81 | * @return array |
| 82 | 82 | */ |
@@ -374,7 +374,7 @@ |
||
| 374 | 374 | /** |
| 375 | 375 | * Close the buffer. |
| 376 | 376 | * |
| 377 | - * @param Automattic\Jetpack\Sync\Queue_Buffer $buffer Queue_Buffer object. |
|
| 377 | + * @param Queue_Buffer $buffer Queue_Buffer object. |
|
| 378 | 378 | * @param null|array $ids_to_remove Ids to remove from the queue. |
| 379 | 379 | * |
| 380 | 380 | * @return bool|\WP_Error |