From f93c2807cc089a4b7ade145fcb79b3d515220f7d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 29 Jun 2016 19:35:28 +0000 Subject: [PATCH] Docs: Supplement a changelog entry in the DocBlock for the `$id` property in `WP_Network`. See [37657] for where access was changed from public to private. See [37870] for where the type was changed from `string` to `int`. See #36717. Built from https://develop.svn.wordpress.org/trunk@37919 git-svn-id: http://core.svn.wordpress.org/trunk@37860 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-network.php | 4 +++- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-network.php b/wp-includes/class-wp-network.php index 0a8d12696d..5ab29c2c58 100644 --- a/wp-includes/class-wp-network.php +++ b/wp-includes/class-wp-network.php @@ -27,7 +27,9 @@ class WP_Network { * Network ID. * * @since 4.4.0 - * @since 4.6.0 Type changed from string to int. + * @since 4.6.0 Converted from public to private to explicitly enable more intuitive + * access via magic methods. As part of the access change, the type was + * also changed from `string` to `int`. * @access private * @var int */ diff --git a/wp-includes/version.php b/wp-includes/version.php index e8232e19f7..a4876342e2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37918'; +$wp_version = '4.6-alpha-37919'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.