Add a missing file header to wp-includes/class-wp-customize-panel.php, separate out the class DocBlock for WP_Customize_Panel.

See #31446.


git-svn-id: https://develop.svn.wordpress.org/trunk@31541 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-02-25 08:08:48 +00:00
parent 4d549627b4
commit 0f6ea391ab

View File

@ -1,13 +1,21 @@
<?php
/**
* Customize Panel Class.
*
* A UI container for sections, managed by the WP_Customize_Manager.
* WordPress Customize Panel classes
*
* @package WordPress
* @subpackage Customize
* @since 4.0.0
*/
/**
* Customize Panel class.
*
* A UI container for sections, managed by the WP_Customize_Manager.
*
* @since 4.0.0
*
* @see WP_Customize_Manager
*/
class WP_Customize_Panel {
/**