We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e459479 commit e9233b6Copy full SHA for e9233b6
app/code/Magento/CustomerImportExport/Model/Import/CountryWithWebsites.php
@@ -33,7 +33,7 @@ class CountryWithWebsites
33
/**
34
* @var array
35
*/
36
- private $allowedCountries = [];
+ private $allowedCountries;
37
38
39
* @var StoreManagerInterface
@@ -72,6 +72,7 @@ public function getCountiesPerWebsite(): array
72
{
73
if (!$this->allowedCountries) {
74
$websiteIds = [];
75
+ $allowedCountries = [];
76
77
foreach ($this->storeManager->getWebsites() as $website) {
78
$countries = $this->allowedCountriesReader
0 commit comments