mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-11 14:22:26 +01:00
Add proper descriptions for the $methods
, $blog_options
, and $error
properties in wp_xmlrpc_server
.
See [30181]. See #30224. Built from https://develop.svn.wordpress.org/trunk@32556 git-svn-id: http://core.svn.wordpress.org/trunk@32526 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7a7df47087
commit
7a93dda2d2
@ -22,17 +22,29 @@
|
||||
*/
|
||||
class wp_xmlrpc_server extends IXR_Server {
|
||||
/**
|
||||
* Methods.
|
||||
*
|
||||
* @access public
|
||||
* @var array
|
||||
*/
|
||||
public $methods;
|
||||
|
||||
/**
|
||||
* Blog options.
|
||||
*
|
||||
* @access public
|
||||
* @var array
|
||||
*/
|
||||
public $blog_options;
|
||||
|
||||
/**
|
||||
* IXR_Error instance.
|
||||
*
|
||||
* @access public
|
||||
* @var IXR_Error
|
||||
*/
|
||||
public $error;
|
||||
|
||||
/**
|
||||
* Register all of the XMLRPC methods that XMLRPC server understands.
|
||||
*
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32555';
|
||||
$wp_version = '4.3-alpha-32556';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user