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:
parent
bbebd0f74d
commit
c5ff4f3b47
|
@ -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' );
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue