Skip to content

Commit f893a92

Browse files
committed
ENGCOM-4302: Static test fix.
1 parent d1e71b9 commit f893a92

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/code/Magento/Reports/Model/ResourceModel/Order/Collection.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,13 @@ protected function getTotalsExpression(
830830
? '(main_table.base_subtotal - %2$s - %1$s - (ABS(main_table.base_discount_amount) - %3$s - %4$s))'
831831
: '((main_table.base_subtotal - %1$s - %2$s - (ABS(main_table.base_discount_amount) - %3$s - %4$s)) '
832832
. ' * main_table.base_to_global_rate)';
833-
return sprintf($template, $baseSubtotalRefunded, $baseSubtotalCanceled, $baseDiscountRefunded, $baseDiscountCanceled);
833+
return sprintf(
834+
$template,
835+
$baseSubtotalRefunded,
836+
$baseSubtotalCanceled,
837+
$baseDiscountRefunded,
838+
$baseDiscountCanceled
839+
);
834840
}
835841

836842
/**

0 commit comments

Comments
 (0)