diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index d928918147..473e1fb247 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -3998,6 +3998,8 @@ final class WP_Customize_Manager { * @since 3.4.0 * @since 4.5.0 Return added WP_Customize_Control instance. * + * @see WP_Customize_Control::__construct() + * * @param WP_Customize_Control|string $id Customize Control object, or ID. * @param array $args Optional. Array of properties for the new Control object. * See WP_Customize_Control::__construct() for information diff --git a/wp-includes/customize/class-wp-customize-color-control.php b/wp-includes/customize/class-wp-customize-color-control.php index cd19aea283..a164c6a965 100644 --- a/wp-includes/customize/class-wp-customize-color-control.php +++ b/wp-includes/customize/class-wp-customize-color-control.php @@ -41,7 +41,8 @@ class WP_Customize_Color_Control extends WP_Customize_Control { * Constructor. * * @since 3.4.0 - * @uses WP_Customize_Control::__construct() + * + * @see WP_Customize_Control::__construct() * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id Control ID. diff --git a/wp-includes/customize/class-wp-customize-media-control.php b/wp-includes/customize/class-wp-customize-media-control.php index ac441c04ec..efbeb2e105 100644 --- a/wp-includes/customize/class-wp-customize-media-control.php +++ b/wp-includes/customize/class-wp-customize-media-control.php @@ -45,6 +45,8 @@ class WP_Customize_Media_Control extends WP_Customize_Control { * @since 4.1.0 * @since 4.2.0 Moved from WP_Customize_Upload_Control. * + * @see WP_Customize_Control::__construct() + * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id Control ID. * @param array $args Optional. Arguments to override class property defaults. diff --git a/wp-includes/customize/class-wp-customize-new-menu-control.php b/wp-includes/customize/class-wp-customize-new-menu-control.php index 8d4d3fe6c5..7dca284cc1 100644 --- a/wp-includes/customize/class-wp-customize-new-menu-control.php +++ b/wp-includes/customize/class-wp-customize-new-menu-control.php @@ -34,6 +34,8 @@ class WP_Customize_New_Menu_Control extends WP_Customize_Control { * @since 4.9.0 * @deprecated 4.9.0 * + * @see WP_Customize_Control::__construct() + * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id The control ID. * @param array $args Optional. Arguments to override class property defaults. diff --git a/wp-includes/customize/class-wp-customize-site-icon-control.php b/wp-includes/customize/class-wp-customize-site-icon-control.php index 37825716ed..d21395c39c 100644 --- a/wp-includes/customize/class-wp-customize-site-icon-control.php +++ b/wp-includes/customize/class-wp-customize-site-icon-control.php @@ -31,6 +31,8 @@ class WP_Customize_Site_Icon_Control extends WP_Customize_Cropped_Image_Control * * @since 4.3.0 * + * @see WP_Customize_Control::__construct() + * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id Control ID. * @param array $args Optional. Arguments to override class property defaults. diff --git a/wp-includes/version.php b/wp-includes/version.php index f554e23d3a..0978f003fa 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-beta3-47381'; +$wp_version = '5.4-beta3-47382'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.