From 520be16b6e448e2932aecfa9b5c32a9858919770 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 7 Oct 2020 11:02:03 +0000 Subject: [PATCH] Docs: Add missing `@return` tag for `wp_xmlrpc_server::_is_greater_than_one()`. Props ankitmaru. Fixes #51465. Built from https://develop.svn.wordpress.org/trunk@49098 git-svn-id: http://core.svn.wordpress.org/trunk@48860 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-xmlrpc-server.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index d89701cc21..42de304df4 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -1307,6 +1307,7 @@ class wp_xmlrpc_server extends IXR_Server { * @since 3.4.0 * * @param int $count Number to compare to one. + * @return bool True if the number is greater than one, false otherwise. */ private function _is_greater_than_one( $count ) { return $count > 1; diff --git a/wp-includes/version.php b/wp-includes/version.php index 32fd938308..717def55e8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49097'; +$wp_version = '5.6-alpha-49098'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.