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:
Drew Jaynes 2015-05-23 19:23:25 +00:00
parent 7a7df47087
commit 7a93dda2d2
2 changed files with 13 additions and 1 deletions

View File

@ -22,17 +22,29 @@
*/ */
class wp_xmlrpc_server extends IXR_Server { class wp_xmlrpc_server extends IXR_Server {
/** /**
* Methods.
*
* @access public
* @var array * @var array
*/ */
public $methods; public $methods;
/** /**
* Blog options.
*
* @access public
* @var array * @var array
*/ */
public $blog_options; public $blog_options;
/** /**
* IXR_Error instance.
*
* @access public
* @var IXR_Error * @var IXR_Error
*/ */
public $error; public $error;
/** /**
* Register all of the XMLRPC methods that XMLRPC server understands. * Register all of the XMLRPC methods that XMLRPC server understands.
* *

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.