Docs: Miscellaneous docblock corrections.

See #49572
Built from https://develop.svn.wordpress.org/trunk@48508


git-svn-id: http://core.svn.wordpress.org/trunk@48270 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2020-07-18 22:11:02 +00:00
parent d9a18d259b
commit c3f787b8ff
9 changed files with 21 additions and 17 deletions

View File

@ -62,7 +62,7 @@ class Plugin_Installer_Skin extends WP_Upgrader_Skin {
*
* @since 5.5.0
*
* @param $wp_error WP_Error.
* @param WP_Error $wp_error WP_Error.
* @return bool
*/
public function hide_process_failed( $wp_error ) {

View File

@ -62,7 +62,7 @@ class Theme_Installer_Skin extends WP_Upgrader_Skin {
*
* @since 5.5.0
*
* @param $wp_error WP_Error.
* @param WP_Error $wp_error WP_Error.
* @return bool
*/
public function hide_process_failed( $wp_error ) {

View File

@ -155,6 +155,8 @@ final class WP_Privacy_Policy_Content {
*
* @since 4.9.6
* @access private
*
* @param int $post_id The ID of the updated post.
*/
public static function _policy_page_updated( $post_id ) {
$policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' );

View File

@ -1041,7 +1041,9 @@ final class WP_Screen {
* @since 3.3.0
*
* @param array $options {
* @type bool $wrap Whether the screen-options-wrap div will be included. Defaults to true.
* Options for the tab.
*
* @type bool $wrap Whether the screen-options-wrap div will be included. Defaults to true.
* }
*/
public function render_screen_options( $options = array() ) {

View File

@ -211,7 +211,7 @@ class WP_Upgrader_Skin {
*
* @since 5.5.0
*
* @param $wp_error WP_Error
* @param WP_Error $wp_error WP_Error
* @return bool
*/
public function hide_process_failed( $wp_error ) {

View File

@ -11,15 +11,15 @@
*
* @since 2.1.0
*
* @param string|int $src The source file or Attachment ID.
* @param int $src_x The start x position to crop from.
* @param int $src_y The start y position to crop from.
* @param int $src_w The width to crop.
* @param int $src_h The height to crop.
* @param int $dst_w The destination width.
* @param int $dst_h The destination height.
* @param int $src_abs Optional. If the source crop points are absolute.
* @param string $dst_file Optional. The destination file to write to.
* @param string|int $src The source file or Attachment ID.
* @param int $src_x The start x position to crop from.
* @param int $src_y The start y position to crop from.
* @param int $src_w The width to crop.
* @param int $src_h The height to crop.
* @param int $dst_w The destination width.
* @param int $dst_h The destination height.
* @param bool $src_abs Optional. If the source crop points are absolute.
* @param string $dst_file Optional. The destination file to write to.
* @return string|WP_Error New filepath on success, WP_Error on failure.
*/
function wp_crop_image( $src, $src_x, $src_y, $src_w, $src_h, $dst_w, $dst_h, $src_abs = false, $dst_file = false ) {

View File

@ -1018,7 +1018,7 @@ jQuery(document).ready( function($) {
*
* @since 4.6.0
*
* @param $args {
* @param array $args {
* Optional. Array or string of Query parameters. Default empty array.
*
* @type int $blog_id The site ID. Default is the current site.

View File

@ -133,7 +133,7 @@ final class WP_Recovery_Mode_Email_Service {
*
* @since 5.2.0
*
* @param $message string The Message to include in the email.
* @param string $message The Message to include in the email.
*/
$support = apply_filters( 'recovery_email_support_info', __( 'Please contact your host for assistance with investigating this issue further.' ) );
@ -142,7 +142,7 @@ final class WP_Recovery_Mode_Email_Service {
*
* @since 5.3.0
*
* @param $message array An associated array of debug information.
* @param array $message An associative array of debug information.
*/
$debug = apply_filters( 'recovery_email_debug_info', $this->get_debug( $extension ) );

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-beta2-48507';
$wp_version = '5.5-beta2-48508';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.