From 0a88251fe5a9ff7400d25d2fd5032a7040e075c8 Mon Sep 17 00:00:00 2001 From: rxu Date: Tue, 18 Jan 2022 08:06:24 +0700 Subject: [PATCH] [ticket/16902] Fix docblock PHPBB3-16902 --- tests/test_framework/phpbb_functional_test_case.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 38980f57f2..5ca43de839 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -1505,10 +1505,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 array &$username_ary The usernames to check or empty if user ids used + * @param string $username The username to check or empty if user_id is 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 */