diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index d928918147..473e1fb247 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/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/src/wp-includes/customize/class-wp-customize-color-control.php b/src/wp-includes/customize/class-wp-customize-color-control.php index cd19aea283..a164c6a965 100644 --- a/src/wp-includes/customize/class-wp-customize-color-control.php +++ b/src/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/src/wp-includes/customize/class-wp-customize-media-control.php b/src/wp-includes/customize/class-wp-customize-media-control.php index ac441c04ec..efbeb2e105 100644 --- a/src/wp-includes/customize/class-wp-customize-media-control.php +++ b/src/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/src/wp-includes/customize/class-wp-customize-new-menu-control.php b/src/wp-includes/customize/class-wp-customize-new-menu-control.php index 8d4d3fe6c5..7dca284cc1 100644 --- a/src/wp-includes/customize/class-wp-customize-new-menu-control.php +++ b/src/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/src/wp-includes/customize/class-wp-customize-site-icon-control.php b/src/wp-includes/customize/class-wp-customize-site-icon-control.php index 37825716ed..d21395c39c 100644 --- a/src/wp-includes/customize/class-wp-customize-site-icon-control.php +++ b/src/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.