getProductTypesBySkus = $getProductTypesBySkus; $this->isSourceItemManagementAllowedForProductType = $isSourceItemManagementAllowedForProductType; } /** * @inheritdoc */ public function execute(string $sku): bool { $productType = $this->getProductTypesBySkus->execute([$sku]); if (isset($productType[$sku])) { $typeId = $productType[$sku]; } else { return false; } return $this->isSourceItemManagementAllowedForProductType->execute($typeId); } }