Docs: Add missing information to constructors DocBlocks for `WP_Widget_Factory`.

See #36299.

Built from https://develop.svn.wordpress.org/trunk@37062


git-svn-id: http://core.svn.wordpress.org/trunk@37029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-03-23 04:19:27 +00:00
parent bbebd0f74d
commit c5ff4f3b47
2 changed files with 7 additions and 1 deletions

View File

@ -26,6 +26,9 @@ class WP_Widget_Factory {
/**
* PHP5 constructor.
*
* @since 4.3.0
* @access public
*/
public function __construct() {
add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 );
@ -33,6 +36,9 @@ class WP_Widget_Factory {
/**
* PHP4 constructor.
*
* @since 2.8.0
* @access public
*/
public function WP_Widget_Factory() {
_deprecated_constructor( 'WP_Widget_Factory', '4.2.0' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta4-37061';
$wp_version = '4.5-beta4-37062';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.