Tweak code formatting

This commit is contained in:
Max Rice 2014-01-21 14:07:22 -05:00
parent bc779e5e2b
commit 49bacc6be3
1 changed files with 6 additions and 6 deletions

View File

@ -281,12 +281,12 @@ class WC_API_Reports extends WC_API_Resource {
}
$period_totals[ $time ] = array(
'sales' => wc_format_decimal( 0.00, 2 ),
'orders' => 0,
'items' => 0,
'tax' => wc_format_decimal( 0.00, 2 ),
'shipping' => wc_format_decimal( 0.00, 2 ),
'discount' => wc_format_decimal( 0.00, 2 ),
'sales' => wc_format_decimal( 0.00, 2 ),
'orders' => 0,
'items' => 0,
'tax' => wc_format_decimal( 0.00, 2 ),
'shipping' => wc_format_decimal( 0.00, 2 ),
'discount' => wc_format_decimal( 0.00, 2 ),
'customers' => $customer_count,
);
}