Docs: Improve `@return` value description for `wp_xmlrpc_server::minimum_args()`.

See #47110.
Built from https://develop.svn.wordpress.org/trunk@46150


git-svn-id: http://core.svn.wordpress.org/trunk@45962 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-09-16 16:32:55 +00:00
parent a86711e28e
commit a86fde414b
2 changed files with 2 additions and 2 deletions

View File

@ -729,7 +729,7 @@ class wp_xmlrpc_server extends IXR_Server {
*
* @param array $args An array of arguments to check.
* @param int $count Minimum number of arguments.
* @return bool if `$args` contains at least $count arguments.
* @return bool True if `$args` contains at least `$count` arguments, false otherwise.
*/
protected function minimum_args( $args, $count ) {
if ( ! is_array( $args ) || count( $args ) < $count ) {

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-46149';
$wp_version = '5.3-alpha-46150';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.