use snake case

This commit is contained in:
Bilal Catic
2018-09-19 16:09:17 +02:00
parent 498f5526a9
commit 522417ca28

View File

@@ -48,8 +48,8 @@ class Wiaas_Countries {
$result = [];
foreach(self::$available_countries as $country){
array_push($result, array(
'idCountry' => $country['id'],
'countryName' => $country['name']
'country_id' => $country['id'],
'country_name' => $country['name']
));
}
return $result;