@@ -87,7 +87,7 @@ |
||
| 87 | 87 | * Construct object from image. |
| 88 | 88 | * |
| 89 | 89 | * @param optional $type (hex, rgb, hsv) |
| 90 | - * @return color as a string formatted as $type |
|
| 90 | + * @return false|string as a string formatted as $type |
|
| 91 | 91 | * |
| 92 | 92 | */ |
| 93 | 93 | function color( $type = 'hex' ) { |
@@ -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', |
@@ -213,7 +213,6 @@ discard block |
||
| 213 | 213 | /** |
| 214 | 214 | * Inject image sizes to Jetpack REST API responses. This wraps the filter_photon_norezise_maybe_inject_sizes function. |
| 215 | 215 | * |
| 216 | - * @param array $data Attachment sizes data. |
|
| 217 | 216 | * @param int $attachment_id Attachment's post ID. |
| 218 | 217 | * |
| 219 | 218 | * @return array Attachment sizes array. |
@@ -1257,7 +1256,7 @@ discard block |
||
| 1257 | 1256 | * after ourselves without breaking anyone else's filters. |
| 1258 | 1257 | * |
| 1259 | 1258 | * @internal |
| 1260 | - * @return true |
|
| 1259 | + * @return boolean |
|
| 1261 | 1260 | */ |
| 1262 | 1261 | public function _override_image_downsize_in_rest_edit_context() { |
| 1263 | 1262 | return true; |
@@ -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' ); |
@@ -162,6 +162,7 @@ discard block |
||
| 162 | 162 | /** |
| 163 | 163 | * Get attachment images for a specified post and return them. Also make sure |
| 164 | 164 | * their dimensions are at or above a required minimum. |
| 165 | + * @param integer $post_id |
|
| 165 | 166 | */ |
| 166 | 167 | static function from_attachment( $post_id, $width = 200, $height = 200 ) { |
| 167 | 168 | $images = array(); |
@@ -224,7 +225,7 @@ discard block |
||
| 224 | 225 | * Check if a Featured Image is set for this post, and return it in a similar |
| 225 | 226 | * format to the other images?_from_*() methods. |
| 226 | 227 | * @param int $post_id The post ID to check |
| 227 | - * @return Array containing details of the Featured Image, or empty array if none. |
|
| 228 | + * @return integer|null containing details of the Featured Image, or empty array if none. |
|
| 228 | 229 | */ |
| 229 | 230 | static function from_thumbnail( $post_id, $width = 200, $height = 200 ) { |
| 230 | 231 | $images = array(); |
@@ -668,7 +669,6 @@ discard block |
||
| 668 | 669 | * resized and cropped image. |
| 669 | 670 | * |
| 670 | 671 | * @param string $src |
| 671 | - * @param int $dimension |
|
| 672 | 672 | * @return string Transformed image URL |
| 673 | 673 | */ |
| 674 | 674 | static function fit_image_url( $src, $width, $height ) { |
@@ -715,7 +715,7 @@ discard block |
||
| 715 | 715 | * |
| 716 | 716 | * @param mixed $html_or_id The HTML string to parse for images, or a post id. |
| 717 | 717 | * |
| 718 | - * @return array $html_info { |
|
| 718 | + * @return integer $html_info { |
|
| 719 | 719 | * @type string $html Post content. |
| 720 | 720 | * @type string $post_url Post URL. |
| 721 | 721 | * } |
@@ -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 ); |
@@ -410,7 +410,7 @@ |
||
| 410 | 410 | * |
| 411 | 411 | * @param Mixed $needle the needle. |
| 412 | 412 | * @param Array $haystack the haystack. |
| 413 | - * @return is the needle not in the haystack? |
|
| 413 | + * @return boolean the needle not in the haystack? |
|
| 414 | 414 | */ |
| 415 | 415 | protected function negative_in_array( $needle, $haystack ) { |
| 416 | 416 | if ( in_array( $needle, $haystack, true ) ) { |
@@ -271,6 +271,9 @@ discard block |
||
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | + /** |
|
| 275 | + * @param string $type |
|
| 276 | + */ |
|
| 274 | 277 | static function get_video_poster( $type, $id ) { |
| 275 | 278 | if ( 'videopress' == $type ) { |
| 276 | 279 | if ( function_exists( 'video_get_highest_resolution_image_url' ) ) { |
@@ -356,6 +359,9 @@ discard block |
||
| 356 | 359 | return (int) count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 357 | 360 | } |
| 358 | 361 | |
| 362 | + /** |
|
| 363 | + * @param string $excerpt_content |
|
| 364 | + */ |
|
| 359 | 365 | static function get_word_remaining_count( $post_content, $excerpt_content ) { |
| 360 | 366 | $content_word_count = count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 361 | 367 | $excerpt_word_count = count( self::split_content_in_words( self::clean_text( $excerpt_content ) ) ); |
@@ -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 ); |