Skip to content

Commit 2775af9

Browse files
[5.3] cs fixes
1 parent fea5cef commit 2775af9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Countries.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static function getAlpha3Name(string $alpha3Code, string $displayLocale =
109109
*
110110
* @return string[]
111111
*/
112-
public static function getNames(?string $displayLocale = null): array
112+
public static function getNames(string $displayLocale = null): array
113113
{
114114
return self::asort(self::readEntry(['Names'], $displayLocale), $displayLocale);
115115
}
@@ -121,7 +121,7 @@ public static function getNames(?string $displayLocale = null): array
121121
*
122122
* @return string[]
123123
*/
124-
public static function getAlpha3Names(?string $displayLocale = null): array
124+
public static function getAlpha3Names(string $displayLocale = null): array
125125
{
126126
$alpha2Names = self::getNames($displayLocale);
127127
$alpha3Names = [];

0 commit comments

Comments
 (0)