Outsourced a chart to a specialised Google chart thing.

This commit is contained in:
James Cole
2015-06-27 08:18:47 +02:00
parent 9e5484937e
commit 63ff01e78d
4 changed files with 101 additions and 30 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace FireflyIII\Generator\Chart\Account;
use Illuminate\Support\Collection;
use Carbon\Carbon;
/**
* Interface AccountChartGenerator
*
* @package FireflyIII\Generator\Chart\Account
*/
interface AccountChartGenerator
{
/**
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return array
*/
public function all(Collection $accounts, Carbon $start, Carbon $end);
}