Docs: Add a missing DocBlock for the WP_Widget_Factory::$widgets property.

Props raimy.
See #36299.


git-svn-id: https://develop.svn.wordpress.org/trunk@37061 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2016-03-23 04:10:27 +00:00
parent 43b9dedeea
commit 7ce686fef1

View File

@ -14,6 +14,14 @@
* @since 4.4.0 Moved to its own file from wp-includes/widgets.php * @since 4.4.0 Moved to its own file from wp-includes/widgets.php
*/ */
class WP_Widget_Factory { class WP_Widget_Factory {
/**
* Widgets array.
*
* @since 2.8.0
* @access public
* @var array
*/
public $widgets = array(); public $widgets = array();
/** /**