diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index f0cce7f371..7471b506bb 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -1344,7 +1344,10 @@ final class WP_Theme implements ArrayAccess { * @static * @access private * - * @return int + * @param string $a First name. + * @param string $b Second name. + * @return int Negative if `$a` falls lower in the natural order than `$b`. Zero if they fall equally. + * Greater than 0 if `$a` falls higher in the natural order than `$b`. Used with uasort(). */ private static function _name_sort( $a, $b ) { return strnatcasecmp( $a->headers['Name'], $b->headers['Name'] ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c1534f0e4b..6c2cf13c10 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36736'; +$wp_version = '4.5-beta1-36737'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.