Browse Source

[Locale] fixed method signature, removed default value for the $locale arg

Eriksen Costa 14 years ago
parent
commit
bc52107d07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Component/Locale/Stub/StubLocale.php

+ 1 - 1
src/Symfony/Component/Locale/Stub/StubLocale.php

@@ -73,7 +73,7 @@ class StubLocale
      * @return array                     The country names with their codes as keys
      * @throws InvalidArgumentException  When the locale is different than 'en'
      */
-    static public function getDisplayCountries($locale = 'en')
+    static public function getDisplayCountries($locale)
     {
         return self::getStubData($locale, 'countries', 'region');
     }