From c1ae8b91e2af4aa908b1eed08ba0e9213857cceb Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 15 Jan 2019 05:53:35 +0000 Subject: [PATCH] Docs: Add docblocks for `WP_Customize_Header_Image_Control` member variables. Props subrataemfluence. Fixes #44410. git-svn-id: https://develop.svn.wordpress.org/trunk@44600 602fd350-edb4-49c9-b593-d223f7449a82 --- ...lass-wp-customize-header-image-control.php | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/wp-includes/customize/class-wp-customize-header-image-control.php b/src/wp-includes/customize/class-wp-customize-header-image-control.php index ae7eac7d8c..52641874f9 100644 --- a/src/wp-includes/customize/class-wp-customize-header-image-control.php +++ b/src/wp-includes/customize/class-wp-customize-header-image-control.php @@ -15,8 +15,28 @@ * @see WP_Customize_Image_Control */ class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control { + /** + * Customize control type. + * + * @since 4.2.0 + * @var string + */ public $type = 'header'; + + /** + * Uploaded header images. + * + * @since 3.9.0 + * @var string + */ public $uploaded_headers; + + /** + * Default header images. + * + * @since 3.9.0 + * @var string + */ public $default_headers; /**