mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-26 08:51:12 -06:00
44 lines
927 B
PHP
44 lines
927 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Generator\Chart\Account;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Models\Account;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface AccountChartGenerator
|
|
*
|
|
* @package FireflyIII\Generator\Chart\Account
|
|
*/
|
|
interface AccountChartGenerator
|
|
{
|
|
|
|
/**
|
|
* @param Collection $accounts
|
|
* @param Carbon $start
|
|
* @param Carbon $end
|
|
*
|
|
* @return array
|
|
*/
|
|
public function expenseAccounts(Collection $accounts, Carbon $start, Carbon $end);
|
|
|
|
/**
|
|
* @param Collection $accounts
|
|
* @param Carbon $start
|
|
* @param Carbon $end
|
|
*
|
|
* @return array
|
|
*/
|
|
public function frontpage(Collection $accounts, Carbon $start, Carbon $end);
|
|
|
|
/**
|
|
* @param Account $account
|
|
* @param Carbon $start
|
|
* @param Carbon $end
|
|
*
|
|
* @return array
|
|
*/
|
|
public function single(Account $account, Carbon $start, Carbon $end);
|
|
}
|