Fix param type for Status::msgInLang

Message params could be an array or another Message object
Message class itself documented with mixed

Change-Id: Ia675ba2d2f5faa73904f90cc26e4f0e2d1317da5
This commit is contained in:
Umherirrender 2020-05-24 20:59:57 +02:00 committed by DannyS712
parent bdf7e3b250
commit 3d27353cd2

View file

@ -430,7 +430,7 @@ class Status extends StatusValue {
/**
* @param string|MessageSpecifier $key
* @param string|Language|StubUserLang|null $lang
* @param string|string[] ...$params
* @param mixed ...$params
* @return Message
*/
private function msgInLang( $key, $lang, ...$params ) : Message {