From 20ce795ff2c54aa80092e17b50709b2957833f95 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 14 Jul 2014 00:40:15 +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. Built from https://develop.svn.wordpress.org/trunk@29158 git-svn-id: http://core.svn.wordpress.org/trunk@28942 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-section.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-customize-section.php b/wp-includes/class-wp-customize-section.php index 0315cc1aaa..09f1d627e7 100644 --- a/wp-includes/class-wp-customize-section.php +++ b/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() { ?>