diff --git a/wp-includes/class-wp-user.php b/wp-includes/class-wp-user.php index 48cb47dce1..20a00ff139 100644 --- a/wp-includes/class-wp-user.php +++ b/wp-includes/class-wp-user.php @@ -283,11 +283,13 @@ class WP_User { } /** - * Magic method for accessing custom fields + * Magic method for accessing custom fields. * * @since 3.3.0 - * @param string $key - * @return mixed + * @access public + * + * @param string $key User meta key to retrieve. + * @return mixed Value of the given user meta key (if set). If `$key` is 'id', the user ID. */ public function __get( $key ) { if ( 'id' == $key ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 9ad8a9c2d3..009c1f8d33 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34388'; +$wp_version = '4.4-alpha-34389'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.