We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d6e0c2 commit 979e31aCopy full SHA for 979e31a
1 file changed
src/wp-includes/user.php
@@ -893,7 +893,9 @@ function get_users( $args = array() ) {
893
* @type string $exclude An array, comma-, or space-separated list of user IDs to exclude. Default empty.
894
* @type string $include An array, comma-, or space-separated list of user IDs to include. Default empty.
895
* }
896
- * @return string|null The output if echo is false. Otherwise null.
+ * @return string|void The output if echo is false. Otherwise void.
897
+ *
898
+ * @phpstan-return ( $args is array{echo:false}&array ? string : void )
899
*/
900
function wp_list_users( $args = array() ) {
901
$defaults = array(
0 commit comments