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
This commit is contained in:
Drew Jaynes (DrewAPicture) 2014-07-14 00:39:10 +00:00
parent f6c14d758e
commit 37a39b6b74
1 changed files with 3 additions and 1 deletions

View File

@ -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() {
?>