* Array as type hint is available only PHP 5.1 or later
This commit is contained in:
parent
125401eb5c
commit
35aa1d6d69
1 changed files with 1 additions and 1 deletions
|
|
@ -1808,7 +1808,7 @@ class Language {
|
|||
* @param array $forms Array of forms given to convertPlural
|
||||
* @return array Padded array of forms or an exception if not an array
|
||||
*/
|
||||
protected function preConvertPlural( Array $forms, $count ) {
|
||||
protected function preConvertPlural( /* Array */ $forms, $count ) {
|
||||
while ( count($forms) < $count ) {
|
||||
$forms[] = $forms[count($forms)-1];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue