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 5e0d2bf commit f507336Copy full SHA for f507336
app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php
@@ -780,7 +780,7 @@ private function getStoreIdByCode(string $storeCode): int
780
if (!isset($this->storeCodeToId[$storeCode])) {
781
/** @var $store Store */
782
foreach ($this->storeManager->getStores() as $store) {
783
- $this->storeCodeToId[$store->getCode()] = $store->getId();
+ $this->storeCodeToId[$store->getCode()] = (int)$store->getId();
784
}
785
786
0 commit comments