From 2e33a0bc5ca333e6846fd8e483faa398f85788f4 Mon Sep 17 00:00:00 2001 From: Magento EngCom Team Date: Tue, 23 Jan 2018 10:49:29 -0600 Subject: [PATCH] :arrow_double_up: Forwardport of magento/magento2#11127 to 2.3-develop branch Applied pull request patch https://github.com/magento/magento2/pull/11127.patch (created by @niccifor) based on commit(s): 1. 7d5fc2512cd21bd8e017ad94e4fbd1a04c3257ac --- app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php b/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php index 8c018ecee544b..f600c65e05f52 100644 --- a/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php +++ b/app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php @@ -43,6 +43,7 @@ public function getOrderItemId() public function setOrderItemId($orderItemId) { $this->orderItemId = $orderItemId; + return $this; } /** @@ -59,6 +60,7 @@ public function getQty() public function setQty($qty) { $this->qty = $qty; + return $this; } /**