Code cleanup [skip ci]

This commit is contained in:
James Cole
2015-07-26 19:13:06 +02:00
parent c8227e09ee
commit eef28d96f4
3 changed files with 7 additions and 7 deletions

View File

@@ -81,9 +81,9 @@ class GoogleBillChartGenerator implements BillChartGenerator
foreach ($entries as $result) {
$chart->addRow(
clone $result->date,
round($bill->amount_max,2),
round($bill->amount_min,2),
round($result->amount,2)
round($bill->amount_max, 2),
round($bill->amount_min, 2),
round($result->amount, 2)
);
}