mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
Fixed some tests.
This commit is contained in:
@@ -40,4 +40,4 @@ interface AccountChartGenerator
|
||||
* @return array
|
||||
*/
|
||||
public function single(Account $account, Carbon $start, Carbon $end);
|
||||
}
|
||||
}
|
||||
|
@@ -110,4 +110,4 @@ class ChartJsAccountChartGenerator implements AccountChartGenerator
|
||||
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -119,4 +119,4 @@ class GoogleAccountChartGenerator implements AccountChartGenerator
|
||||
|
||||
return $chart->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -29,4 +29,4 @@ interface BillChartGenerator
|
||||
*/
|
||||
public function frontpage(Collection $paid, Collection $unpaid);
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -80,4 +80,4 @@ class ChartJsBillChartGenerator implements BillChartGenerator
|
||||
public function single(Bill $bill, Collection $entries)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -84,4 +84,4 @@ class GoogleBillChartGenerator implements BillChartGenerator
|
||||
|
||||
return $chart->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -40,4 +40,4 @@ interface BudgetChartGenerator
|
||||
*/
|
||||
public function year(Collection $budgets, Collection $entries);
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -138,4 +138,4 @@ class ChartJsBudgetChartGenerator implements BudgetChartGenerator
|
||||
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -107,4 +107,4 @@ class GoogleBudgetChartGenerator implements BudgetChartGenerator
|
||||
|
||||
return $chart->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -41,4 +41,4 @@ interface CategoryChartGenerator
|
||||
* @return array
|
||||
*/
|
||||
public function year(Collection $categories, Collection $entries);
|
||||
}
|
||||
}
|
||||
|
@@ -112,4 +112,4 @@ class ChartJsCategoryChartGenerator implements CategoryChartGenerator
|
||||
return $data;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -101,4 +101,4 @@ class GoogleCategoryChartGenerator implements CategoryChartGenerator
|
||||
return $chart->getData();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -49,4 +49,4 @@ class ChartJsPiggyBankChartGenerator implements PiggyBankChartGenerator
|
||||
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -38,4 +38,4 @@ class GooglePiggyBankChartGenerator implements PiggyBankChartGenerator
|
||||
|
||||
return $chart->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -17,4 +17,4 @@ interface PiggyBankChartGenerator
|
||||
* @return array
|
||||
*/
|
||||
public function history(Collection $set);
|
||||
}
|
||||
}
|
||||
|
@@ -84,4 +84,4 @@ class ChartJsReportChartGenerator implements ReportChartGenerator
|
||||
$data['datasets'][1]['data'][] = round(($expense / $count), 2);
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -55,4 +55,4 @@ class GoogleReportChartGenerator implements ReportChartGenerator
|
||||
|
||||
return $chart->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -28,4 +28,4 @@ interface ReportChartGenerator
|
||||
*/
|
||||
public function yearInOutSummarized($income, $expense, $count);
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user