@@ -52,7 +52,7 @@ |
||
| 52 | 52 | /** |
| 53 | 53 | * Helper function to look up the expected master user and return the local WP_User. |
| 54 | 54 | * |
| 55 | - * @return WP_User Jetpack's expected master user. |
|
| 55 | + * @return string Jetpack's expected master user. |
|
| 56 | 56 | */ |
| 57 | 57 | protected function helper_retrieve_local_master_user() { |
| 58 | 58 | $master_user = Jetpack_Options::get_option( 'master_user' ); |
@@ -129,6 +129,9 @@ discard block |
||
| 129 | 129 | return apply_filters( 'jp_carousel_load_for_images_linked_to_file', false ); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | + /** |
|
| 133 | + * @param string $version |
|
| 134 | + */ |
|
| 132 | 135 | function asset_version( $version ) { |
| 133 | 136 | /** |
| 134 | 137 | * Filter the version string used when enqueuing Carousel assets. |
@@ -511,6 +514,9 @@ discard block |
||
| 511 | 514 | return $attr; |
| 512 | 515 | } |
| 513 | 516 | |
| 517 | + /** |
|
| 518 | + * @param string $html |
|
| 519 | + */ |
|
| 514 | 520 | function add_data_to_container( $html ) { |
| 515 | 521 | global $post; |
| 516 | 522 | if ( |
@@ -757,6 +763,9 @@ discard block |
||
| 757 | 763 | return ( 1 == $value ) ? 1 : 0; |
| 758 | 764 | } |
| 759 | 765 | |
| 766 | + /** |
|
| 767 | + * @param string $name |
|
| 768 | + */ |
|
| 760 | 769 | function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) { |
| 761 | 770 | if ( empty( $name ) ) { |
| 762 | 771 | return; |
@@ -772,6 +781,9 @@ discard block |
||
| 772 | 781 | echo '</fieldset>'; |
| 773 | 782 | } |
| 774 | 783 | |
| 784 | + /** |
|
| 785 | + * @param string $name |
|
| 786 | + */ |
|
| 775 | 787 | function settings_select( $name, $values, $extra_text = '' ) { |
| 776 | 788 | if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) { |
| 777 | 789 | return; |
@@ -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 | */ |
@@ -220,7 +220,7 @@ |
||
| 220 | 220 | * |
| 221 | 221 | * @access public |
| 222 | 222 | * |
| 223 | - * @return array Full sync actions of this module. |
|
| 223 | + * @return string[] Full sync actions of this module. |
|
| 224 | 224 | */ |
| 225 | 225 | public function get_full_sync_actions() { |
| 226 | 226 | return array( 'jetpack_full_sync_comments' ); |
@@ -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 | */ |
@@ -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 ) { |