Skip to content

Commit

Permalink
Correct case error in vartiable name
Browse files Browse the repository at this point in the history
  • Loading branch information
spvickers authored Jul 20, 2020
1 parent f938da6 commit 34f396e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/LineItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function saveLineItem($lineItem)
if ($ok && !empty($http->responseJson)) {
$savedLineItem = self::toLineItem($this->getConsumer(), $http->responseJson);
foreach (get_object_vars($savedLineItem) as $key => $value) {
$lineitem->$key = $value;
$lineItem->$key = $value;
}
}

Expand Down

0 comments on commit 34f396e

Please sign in to comment.