Index: trunk/phase3/includes/Message.php |
— | — | @@ -136,7 +136,7 @@ |
137 | 137 | * Factory function accepting multiple message keys and returning a message instance |
138 | 138 | * for the first message which is non-empty. If all messages are empty then an |
139 | 139 | * instance of the first message key is returned. |
140 | | - * @param Varargs: message keys |
| 140 | + * @param Varargs: message keys (or first arg as an array of all the message keys) |
141 | 141 | * @return Message: $this |
142 | 142 | */ |
143 | 143 | public static function newFallbackSequence( /*...*/ ) { |
— | — | @@ -155,7 +155,7 @@ |
156 | 156 | |
157 | 157 | /** |
158 | 158 | * Adds parameters to the parameter list of this message. |
159 | | - * @param Varargs: parameters as Strings |
| 159 | + * @param Varargs: parameters as Strings, or a single argument that is an array of Strings |
160 | 160 | * @return Message: $this |
161 | 161 | */ |
162 | 162 | public function params( /*...*/ ) { |
— | — | @@ -173,7 +173,7 @@ |
174 | 174 | * In other words the parsing process cannot access the contents |
175 | 175 | * of this type of parameter, and you need to make sure it is |
176 | 176 | * sanitized beforehand. The parser will see "$n", instead. |
177 | | - * @param Varargs: raw parameters as Strings |
| 177 | + * @param Varargs: raw parameters as Strings (or single argument that is an array of raw parameters) |
178 | 178 | * @return Message: $this |
179 | 179 | */ |
180 | 180 | public function rawParams( /*...*/ ) { |
— | — | @@ -190,7 +190,7 @@ |
191 | 191 | /** |
192 | 192 | * Add parameters that are numeric and will be passed through |
193 | 193 | * Language::formatNum before substitution |
194 | | - * @param Varargs: numeric parameters |
| 194 | + * @param Varargs: numeric parameters (or single argument that is array of numeric parameters) |
195 | 195 | * @return Message: $this |
196 | 196 | */ |
197 | 197 | public function numParams( /*...*/ ) { |