From 37a39b6b74868684aec1adb6210142603c3bdb49 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Mon, 14 Jul 2014 00:39:10 +0000 Subject: [PATCH] Inline documentation cleanup for 4.0 audit. phpDoc tweaks for methods added in [28861]: * `WP_Customize_Panel` constructor method * `WP_Customize_Panel::render()` method See #27406 and #28885. git-svn-id: https://develop.svn.wordpress.org/trunk@29158 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-section.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-customize-section.php b/src/wp-includes/class-wp-customize-section.php index 0315cc1aaa..09f1d627e7 100644 --- a/src/wp-includes/class-wp-customize-section.php +++ b/src/wp-includes/class-wp-customize-section.php @@ -218,10 +218,11 @@ class WP_Customize_Panel extends WP_Customize_Section { * Any supplied $args override class property defaults. * * @since 4.0.0 + * @access public * * @param WP_Customize_Manager $manager Customizer bootstrap instance. * @param string $id An specific ID of the section. - * @param array $args Section arguments. + * @param array $args Optional. Section arguments. Default empty array. */ public function __construct( $manager, $id, $args = array() ) { parent::__construct( $manager, $id, $args ); @@ -235,6 +236,7 @@ class WP_Customize_Panel extends WP_Customize_Section { * Render the panel, and the sections that have been added to it. * * @since 4.0.0 + * @access protected */ protected function render() { ?>