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
This commit is contained in:
Drew Jaynes 2016-05-27 17:12:29 +00:00
parent 9913b6eec4
commit 7b5364d2ec
2 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -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 * @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 * @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 * @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 * @since 3.5.0
* *