Skip to content

Commit

Permalink
Add missing return statements in setters
Browse files Browse the repository at this point in the history
  • Loading branch information
niccifor committed Sep 28, 2017
1 parent fa2439c commit 7d5fc25
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/code/Magento/Sales/Model/Order/Shipment/ItemCreation.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public function getOrderItemId()
public function setOrderItemId($orderItemId)
{
$this->orderItemId = $orderItemId;
return $this;
}

/**
Expand All @@ -59,6 +60,7 @@ public function getQty()
public function setQty($qty)
{
$this->qty = $qty;
return $this;
}

/**
Expand Down

0 comments on commit 7d5fc25

Please sign in to comment.