@@ -47,7 +47,7 @@ public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface
47
47
$ this ->addCountryRegions ($ setup , 'IN ' , $ this ->getDataForIndia ());
48
48
}
49
49
if (version_compare ($ context ->getVersion (), '2.0.3 ' , '< ' )) {
50
- $ this ->addCountryRegions ($ setup , $ this ->getDataForAustralia ());
50
+ $ this ->addCountryRegions ($ setup , ' AU ' , $ this ->getDataForAustralia ());
51
51
}
52
52
}
53
53
@@ -138,14 +138,14 @@ private function getDataForIndia()
138
138
private function getDataForAustralia ()
139
139
{
140
140
return [
141
- [ ' AU ' , ' ACT ', 'Australian Capital Territory ' ] ,
142
- [ ' AU ' , ' NSW ', 'New South Wales ' ] ,
143
- [ ' AU ' , ' VIC ', 'Victoria ' ] ,
144
- [ ' AU ' , ' QLD ', 'Queensland ' ] ,
145
- [ ' AU ' , ' SA ', 'South Australia ' ] ,
146
- [ ' AU ' , ' TAS ', 'Tasmania ' ] ,
147
- [ ' AU ' , ' WA ', 'Western Australia ' ] ,
148
- [ ' AU ' , ' NT ', 'Northern Territory ' ]
141
+ ' ACT ' => 'Australian Capital Territory ' ,
142
+ ' NSW ' => 'New South Wales ' ,
143
+ ' VIC ' => 'Victoria ' ,
144
+ ' QLD ' => 'Queensland ' ,
145
+ ' SA ' => 'South Australia ' ,
146
+ ' TAS ' => 'Tasmania ' ,
147
+ ' WA ' => 'Western Australia ' ,
148
+ ' NT ' => 'Northern Territory '
149
149
];
150
150
}
151
151
0 commit comments