@@ -547,7 +547,7 @@ |
||
547 | 547 | // Get the field key, for example `without_tax_shipping` if we need to increment `without_tax_shipping_total` |
548 | 548 | $resultKey = str_replace('_total', '', $key); |
549 | 549 | if (isset($elementResult[$resultKey])) { |
550 | - $this->result[$key] += (int)$elementResult[$resultKey]; // Cast in int because doctrine return string for columns with `+`, and we can have null values |
|
550 | + $this->result[$key] += (int) $elementResult[$resultKey]; // Cast in int because doctrine return string for columns with `+`, and we can have null values |
|
551 | 551 | } |
552 | 552 | } |
553 | 553 | } |