From 7b5364d2ec24e1843d87c6d9aee7d0e955c2eede Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 27 May 2016 17:12:29 +0000 Subject: [PATCH] Docs: Standardizes and improves DocBlock summaries for the `__get()`, `__set()`, `__isset()`, and `__unset()` magic methods in `wpdb`. See #32246. Built from https://develop.svn.wordpress.org/trunk@37585 git-svn-id: http://core.svn.wordpress.org/trunk@37553 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/wp-db.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index d3d02ba0d0..88d62eccde 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37584'; +$wp_version = '4.6-alpha-37585'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index c9fe6a31ad..d261254926 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -670,7 +670,7 @@ class wpdb { } /** - * PHP5 style magic getter, used to lazy-load expensive data. + * Makes private properties readable for backward compatibility. * * @since 3.5.0 * @@ -685,7 +685,7 @@ class wpdb { } /** - * Magic function, for backward compatibility. + * Makes private properties settable for backward compatibility. * * @since 3.5.0 * @@ -705,7 +705,7 @@ class wpdb { } /** - * Magic function, for backward compatibility. + * Makes private properties check-able for backward compatibility. * * @since 3.5.0 * @@ -718,7 +718,7 @@ class wpdb { } /** - * Magic function, for backward compatibility. + * Makes private properties un-settable for backward compatibility. * * @since 3.5.0 *