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:
parent
a86711e28e
commit
a86fde414b
|
@ -729,7 +729,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
*
|
*
|
||||||
* @param array $args An array of arguments to check.
|
* @param array $args An array of arguments to check.
|
||||||
* @param int $count Minimum number of arguments.
|
* @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 ) {
|
protected function minimum_args( $args, $count ) {
|
||||||
if ( ! is_array( $args ) || count( $args ) < $count ) {
|
if ( ! is_array( $args ) || count( $args ) < $count ) {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue