From 7f1729c417161d2f1566e22c9d8b120f8fe79b5c Mon Sep 17 00:00:00 2001 From: Joaquin Marcher Date: Tue, 4 Jul 2017 13:57:23 +0200 Subject: [PATCH] Fixed issue with tests --- build/logs/clover.xml | 81 +++++++++++++++++++++++++------------------ src/CartItem.php | 2 +- 2 files changed, 48 insertions(+), 35 deletions(-) diff --git a/build/logs/clover.xml b/build/logs/clover.xml index f514400..7a491ca 100644 --- a/build/logs/clover.xml +++ b/build/logs/clover.xml @@ -1,8 +1,8 @@ - - + + - + @@ -15,7 +15,7 @@ - + @@ -32,9 +32,9 @@ - + - + @@ -90,6 +90,7 @@ + @@ -99,7 +100,7 @@ - + @@ -111,8 +112,10 @@ + + @@ -149,9 +152,9 @@ - + - + @@ -178,9 +181,9 @@ - + - + @@ -231,7 +234,7 @@ - + @@ -248,6 +251,13 @@ + + + + + + + @@ -440,9 +450,9 @@ - + - + @@ -450,7 +460,7 @@ - + @@ -482,16 +492,16 @@ - + - + - + - + @@ -509,9 +519,12 @@ - + + + + - + @@ -532,31 +545,31 @@ - + - + - + - + - + @@ -564,7 +577,7 @@ - + @@ -576,7 +589,7 @@ - + @@ -584,7 +597,7 @@ - + @@ -611,7 +624,7 @@ - + @@ -659,7 +672,7 @@ - + @@ -667,9 +680,9 @@ - - + + - + diff --git a/src/CartItem.php b/src/CartItem.php index a826b4f..9d26f13 100644 --- a/src/CartItem.php +++ b/src/CartItem.php @@ -241,7 +241,7 @@ public function subItemsTotal($format = true, $taxedItemsOnly = false, $withTax $total = 0; foreach ($this->subItems as $subItem) { - $total += $subItem->price(false, $taxedItemsOnly) * $subItem->qty; + $total += $subItem->price(false, $taxedItemsOnly) * ($subItem->qty ?: 1); } if ($withTax) {