From f16caa5b06e0c428e19d46b7af2ce8d29c5831b6 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Thu, 7 Jun 2018 23:06:02 -0700 Subject: [PATCH] Fix wfMessage() annotation $params is a variadic parameter now, so it must be treated as an array. Same thing for wfMessageFallback(). Change-Id: I606deb7ea0fb9be25ac79aadfbab0cc44bdc36a0 --- includes/GlobalFunctions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 6b4e4ee4df..ee63637628 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1336,7 +1336,7 @@ function wfGetLangObj( $langcode = false ) { * This function replaces all old wfMsg* functions. * * @param string|string[]|MessageSpecifier $key Message key, or array of keys, or a MessageSpecifier - * @param string ...$params Normal message parameters + * @param string[]|string[][] ...$params Normal message parameters * @return Message * * @since 1.17 @@ -1359,7 +1359,7 @@ function wfMessage( $key, ...$params ) { * for the first message which is non-empty. If all messages are empty then an * instance of the first message key is returned. * - * @param string|string[] ...$keys Message keys + * @param string[] ...$keys Message keys * @return Message * * @since 1.18 -- 2.20.1