From b6ce9d8ad8f5147ae578ab4a02f8caf54fcb4a47 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Thu, 1 Feb 2018 03:00:17 +0800 Subject: [PATCH] Fix missing semicolon --- src/Service/InvoiceCreator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/InvoiceCreator.php b/src/Service/InvoiceCreator.php index b31dad70..3c3c3e1f 100644 --- a/src/Service/InvoiceCreator.php +++ b/src/Service/InvoiceCreator.php @@ -56,7 +56,7 @@ class InvoiceCreator $batts = $criteria->getBatteries(); foreach ($batts as $batt) { - $sell_price = $batt->getSellingPrice() + $sell_price = $batt->getSellingPrice(); $vat = $this->getVATAmount($sell_price); $vat_ex_price = $this->getVATExclusivePrice($sell_price);