From 204bab92c2171270e706ed232ded5ce5b5e11afa Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 3 Nov 2014 02:31:39 +0000 Subject: [PATCH] In `WP_HTTP_IXR_Client`: * declare `$scheme` as a property, it doesn't exist on the parent class * declare `$error` as a property of type `IXR_Error`, instead of it being inferred as `boolean` from the parent class See #30224. git-svn-id: https://develop.svn.wordpress.org/trunk@30179 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-http-ixr-client.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wp-includes/class-wp-http-ixr-client.php b/src/wp-includes/class-wp-http-ixr-client.php index 2a18716c46..4bf8920235 100644 --- a/src/wp-includes/class-wp-http-ixr-client.php +++ b/src/wp-includes/class-wp-http-ixr-client.php @@ -7,6 +7,11 @@ * */ class WP_HTTP_IXR_Client extends IXR_Client { + public $scheme; + /** + * @var IXR_Error + */ + public $error; public function __construct($server, $path = false, $port = false, $timeout = 15) { if ( ! $path ) {