BaseLang::translateString() accepts float and int too (they can be casted to string)

This commit is contained in:
Dylan K. Taylor 2019-12-12 16:18:11 +00:00
parent f39fc7e525
commit 77795ae3bc

View File

@ -115,9 +115,9 @@ class BaseLang{
}
/**
* @param string $str
* @param string[] $params
* @param string|null $onlyPrefix
* @param string $str
* @param (float|int|string)[] $params
* @param string|null $onlyPrefix
*
* @return string
*/