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
This commit is contained in:
parent
3af2efdac6
commit
20ce795ff2
|
@ -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() {
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue