@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | * Update the media post grabbing the post values from |
| 102 | 102 | * the `attrs` parameter |
| 103 | 103 | * |
| 104 | - * @param {Number} $media_id - post media ID |
|
| 104 | + * @param integer $media_id - post media ID |
|
| 105 | 105 | * @param {Object} $attrs - `attrs` parameter sent from the client in the request body |
| 106 | 106 | * @return |
| 107 | 107 | */ |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | * Save the given temporal file in a local folder. |
| 203 | 203 | * |
| 204 | 204 | * @param {Array} $file_array |
| 205 | - * @param {Number} $media_id |
|
| 205 | + * @param integer $media_id |
|
| 206 | 206 | * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong. |
| 207 | 207 | */ |
| 208 | 208 | private function save_temporary_file( $file_array, $media_id ) { |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | /** |
| 278 | 278 | * Get the image from a remote url and then save it locally. |
| 279 | 279 | * |
| 280 | - * @param {Number} $media_id - media post ID |
|
| 280 | + * @param integer $media_id - media post ID |
|
| 281 | 281 | * @param {String} $url - image URL to save locally |
| 282 | 282 | * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong. |
| 283 | 283 | */ |
@@ -505,6 +505,9 @@ |
||
| 505 | 505 | public $service = ''; |
| 506 | 506 | public $total = 0; |
| 507 | 507 | |
| 508 | + /** |
|
| 509 | + * @param integer $total |
|
| 510 | + */ |
|
| 508 | 511 | public function __construct( $id, $total ) { |
| 509 | 512 | $services = new Sharing_Service(); |
| 510 | 513 | $this->id = esc_html( $id ); |
@@ -172,7 +172,7 @@ |
||
| 172 | 172 | * @param array $post_types - other post types. |
| 173 | 173 | * |
| 174 | 174 | * @see hook 'rest_api_allowed_post_types' |
| 175 | - * @return array |
|
| 175 | + * @return string[] |
|
| 176 | 176 | */ |
| 177 | 177 | public function allow_rest_api_types( $post_types ) { |
| 178 | 178 | $post_types[] = self::$post_type_plan; |
@@ -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' ) { |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | * |
| 82 | 82 | * @param String $plugin_slug plugin slug string. |
| 83 | 83 | * @param String $current_version plugin version string. |
| 84 | - * @return null|bool |
|
| 84 | + * @return false|null |
|
| 85 | 85 | */ |
| 86 | 86 | public static function cdnize_plugin_assets( $plugin_slug, $current_version ) { |
| 87 | 87 | global $wp_scripts, $wp_styles; |
@@ -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; |