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.