Skip to content

Commit

Permalink
Fix ecs
Browse files Browse the repository at this point in the history
  • Loading branch information
Prometee committed May 18, 2020
1 parent 28da8ca commit 7f6ef18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/LineItemProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function getLineItem(OrderItemInterface $orderItem): ?array
}

return [
'amount' => $orderItem->getTotal()/$orderItem->getQuantity(),
'amount' => $orderItem->getTotal() / $orderItem->getQuantity(),
'currency' => $order->getCurrencyCode(),
'name' => $this->lineItemNameProvider->getItemName($orderItem),
'quantity' => $orderItem->getQuantity(),
Expand Down

0 comments on commit 7f6ef18

Please sign in to comment.