From 888a48e06064d894e8ac2cff6f18c2e6cc350d54 Mon Sep 17 00:00:00 2001 From: Luke Rodgers Date: Fri, 3 Mar 2023 14:29:19 +0000 Subject: [PATCH] Fix whitespace in `GetIsManageStockForProduct.php` --- InventorySalesAdminUi/Model/GetIsManageStockForProduct.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']; }