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 e2f238a commit 5798334Copy full SHA for 5798334
app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php
@@ -791,7 +791,7 @@ private function getStoreIdByCode(string $storeCode): int
791
if (!isset($this->storeCodeToId[$storeCode])) {
792
/** @var $store \Magento\Store\Model\Store */
793
foreach ($this->storeManager->getStores() as $store) {
794
- $this->storeCodeToId[$store->getCode()] = $store->getId();
+ $this->storeCodeToId[$store->getCode()] = (int)$store->getId();
795
}
796
797
0 commit comments