mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Docs: Improve @return value description for wp_xmlrpc_server::minimum_args().
See #47110. git-svn-id: https://develop.svn.wordpress.org/trunk@46150 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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 ) {
|
||||
|
||||
Reference in New Issue
Block a user