From 943dcbbcefe2b5a8e54986d5e24915c1ad7b3a47 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 9 Jan 2019 05:48:33 +0000 Subject: [PATCH] Docs: Add docblocks to the members of `WP_Widget_Form_Customize_Control`. Props subrataemfluence. Fixes #44420. git-svn-id: https://develop.svn.wordpress.org/trunk@44498 602fd350-edb4-49c9-b593-d223f7449a82 --- ...class-wp-widget-form-customize-control.php | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/wp-includes/customize/class-wp-widget-form-customize-control.php b/src/wp-includes/customize/class-wp-widget-form-customize-control.php index 01acdd6c06..260b417f46 100644 --- a/src/wp-includes/customize/class-wp-widget-form-customize-control.php +++ b/src/wp-includes/customize/class-wp-widget-form-customize-control.php @@ -15,13 +15,68 @@ * @see WP_Customize_Control */ class WP_Widget_Form_Customize_Control extends WP_Customize_Control { + /** + * Customize control type. + * + * @since 3.9.0 + * @var string + */ public $type = 'widget_form'; + + /** + * Widget ID. + * + * @since 3.9.0 + * @var string + */ public $widget_id; + + /** + * Widget ID base. + * + * @since 3.9.0 + * @var string + */ public $widget_id_base; + + /** + * Sidebar ID. + * + * @since 3.9.0 + * @var string + */ public $sidebar_id; + + /** + * Widget status. + * + * @since 3.9.0 + * @var bool True if new, false otherwise. Default false. + */ public $is_new = false; + + /** + * Widget width. + * + * @since 3.9.0 + * @var int + */ public $width; + + /** + * Widget height. + * + * @since 3.9.0 + * @var int + */ public $height; + + /** + * Widget mode. + * + * @since 3.9.0 + * @var bool True if wide, false otherwise. Default false. + */ public $is_wide = false; /**