From 35aa1d6d6950fa60013e7f97a7e21f87dce2811f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sat, 22 Dec 2007 12:41:42 +0000 Subject: [PATCH] * Array as type hint is available only PHP 5.1 or later --- languages/Language.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/Language.php b/languages/Language.php index 94ae926008..6caee42c98 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -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]; } -- 2.20.1