@@ -332,6 +332,9 @@ |
||
| 332 | 332 | <?php |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | + /** |
|
| 336 | + * @param string $option |
|
| 337 | + */ |
|
| 335 | 338 | function admin_likes_get_option( $option ) { |
| 336 | 339 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
| 337 | 340 | $option_setting = get_blog_option( get_current_blog_id(), $option, 'on' ); |
@@ -294,6 +294,9 @@ discard block |
||
| 294 | 294 | return $this->_options; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | + /** |
|
| 298 | + * @param string $option_name |
|
| 299 | + */ |
|
| 297 | 300 | public function get_option( $option_name ) { |
| 298 | 301 | $options = $this->get_options(); |
| 299 | 302 | |
@@ -1428,6 +1431,8 @@ discard block |
||
| 1428 | 1431 | * Enqueues assets needed to do async loading of related posts. |
| 1429 | 1432 | * |
| 1430 | 1433 | * @uses wp_enqueue_script, wp_enqueue_style, plugins_url |
| 1434 | + * @param boolean $script |
|
| 1435 | + * @param boolean $style |
|
| 1431 | 1436 | * @return null |
| 1432 | 1437 | */ |
| 1433 | 1438 | protected function _enqueue_assets( $script, $style ) { |
@@ -598,7 +598,6 @@ discard block |
||
| 598 | 598 | * @uses Jetpack::disconnect(); |
| 599 | 599 | * @since 4.3.0 |
| 600 | 600 | * |
| 601 | - * @param WP_REST_Request $request The request sent to the WP REST API. |
|
| 602 | 601 | * |
| 603 | 602 | * @return string|WP_Error A raw URL if the connection URL could be built; error message otherwise. |
| 604 | 603 | */ |
@@ -618,7 +617,6 @@ discard block |
||
| 618 | 617 | * |
| 619 | 618 | * @since 4.3.0 |
| 620 | 619 | * |
| 621 | - * @param WP_REST_Request $request The request sent to the WP REST API. |
|
| 622 | 620 | * |
| 623 | 621 | * @return object |
| 624 | 622 | */ |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | * @access private |
| 56 | 56 | * @param string $key |
| 57 | 57 | * @param array $files |
| 58 | - * @return void |
|
| 58 | + * @return WP_Error|null |
|
| 59 | 59 | */ |
| 60 | 60 | function _jetpack_require_compat_file( $key, $files ) { |
| 61 | 61 | if ( ! is_string( $key ) ) { |
@@ -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 | */ |
@@ -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', |
@@ -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' ); |
@@ -199,7 +199,7 @@ |
||
| 199 | 199 | * @param string $type Test type, async or direct. Optional, direct all tests. |
| 200 | 200 | * @param string $group Testing group to check status of. Optional, default all tests. |
| 201 | 201 | * |
| 202 | - * @return true|array True if all tests pass. Array of failed tests. |
|
| 202 | + * @return boolean True if all tests pass. Array of failed tests. |
|
| 203 | 203 | */ |
| 204 | 204 | public function pass( $type = 'all', $group = 'all' ) { |
| 205 | 205 | $results = $this->raw_results( $type, $group ); |
@@ -416,7 +416,7 @@ |
||
| 416 | 416 | * Only enqueue block assets when needed. |
| 417 | 417 | * |
| 418 | 418 | * @param string $type Slug of the block. |
| 419 | - * @param array $script_dependencies Script dependencies. Will be merged with automatically |
|
| 419 | + * @param string[] $script_dependencies Script dependencies. Will be merged with automatically |
|
| 420 | 420 | * detected script dependencies from the webpack build. |
| 421 | 421 | * |
| 422 | 422 | * @return void |