From 7a93dda2d2baf87a670c5491d9f2ce372161fe06 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 23 May 2015 19:23:25 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-xmlrpc-server.php | 12 ++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index 4d2bb9c187..05d6a90fd8 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -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. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 3ac3fc3f6a..b180c58679 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.