Moved method to new helper.

This commit is contained in:
James Cole
2016-01-27 20:48:35 +01:00
parent 93b97b8d72
commit 5c59c819b6
4 changed files with 113 additions and 110 deletions

View File

@@ -9,6 +9,11 @@
namespace FireflyIII\Helpers\Report;
use Carbon\Carbon;
use FireflyIII\Helpers\Collection\Account as AccountCollection;
use Illuminate\Support\Collection;
/**
* Interface AccountReportHelperInterface
*
@@ -16,5 +21,16 @@ namespace FireflyIII\Helpers\Report;
*/
interface AccountReportHelperInterface
{
/**
* This method generates a full report for the given period on all
* given accounts
*
* @param Carbon $start
* @param Carbon $end
* @param Collection $accounts
*
* @return AccountCollection
*/
public function getAccountReport(Carbon $start, Carbon $end, Collection $accounts);
}