Skip to content

Commit b358992

Browse files
committed
Code style improvements
1 parent 445df8e commit b358992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Model/DataLayer/Cart/Item.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function getValue(QuoteItem $quoteItem): float
4343
if ($this->config->isPurchaseTaxEnabled()) {
4444
$value = (float)$quoteItem->getPriceInclTax();
4545
if (!$value) {
46-
$value = (float)$quoteItem->getPrice();
46+
$value = (float)$quoteItem->getPrice();
4747
}
4848
} else {
4949
$value = (float)$quoteItem->getPrice();

0 commit comments

Comments
 (0)