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. Built from https://develop.svn.wordpress.org/trunk@30179 git-svn-id: http://core.svn.wordpress.org/trunk@30179 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
68a67a9b0d
commit
a887301869
|
@ -7,6 +7,11 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class WP_HTTP_IXR_Client extends IXR_Client {
|
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) {
|
public function __construct($server, $path = false, $port = false, $timeout = 15) {
|
||||||
if ( ! $path ) {
|
if ( ! $path ) {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-alpha-30178';
|
$wp_version = '4.1-alpha-30179';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue