diff --git a/InventorySalesAdminUi/Model/GetIsManageStockForProduct.php b/InventorySalesAdminUi/Model/GetIsManageStockForProduct.php index e73c2bde385..6f6fbb4040d 100644 --- a/InventorySalesAdminUi/Model/GetIsManageStockForProduct.php +++ b/InventorySalesAdminUi/Model/GetIsManageStockForProduct.php @@ -92,7 +92,7 @@ public function execute(string $sku, string $websiteCode): ?bool private function getProductStockIds(string $sku): array { $stockIds = []; - $stocksInfo =$this->getSalableQuantityDataBySku->execute($sku); + $stocksInfo = $this->getSalableQuantityDataBySku->execute($sku); foreach ($stocksInfo as $stockInfo) { $stockIds[] = (int)$stockInfo['stock_id']; }