1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-06 09:54:37 +02:00

[ticket/16902] Fix docblock

PHPBB3-16902
This commit is contained in:
rxu
2022-01-18 08:06:24 +07:00
parent 5e43f6195c
commit a8c93ff661

View File

@ -1496,10 +1496,10 @@ class phpbb_functional_test_case extends phpbb_test_case
} }
/** /**
* Check if a user exists by username(s) or user_id(s) * Check if a user exists by username or user_id
* *
* @param array &$user_id_ary The user ids to check or empty if usernames used * @param string $username The username to check or empty if user_id is used
* @param array &$username_ary The usernames to check or empty if user ids used * @param int $user_id The user id to check or empty if username is used
* *
* @return bool Returns true if a user exists, false otherwise * @return bool Returns true if a user exists, false otherwise
*/ */