mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
26 lines
528 B
PHP
26 lines
528 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: User
|
|
* Date: 29-7-14
|
|
* Time: 10:42
|
|
*/
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
interface ChartInterface
|
|
{
|
|
|
|
public function account(\Account $account, Carbon $start, Carbon $end);
|
|
|
|
public function categories(Carbon $start, Carbon $end);
|
|
|
|
public function budgets(Carbon $start);
|
|
|
|
public function accountDailySummary(\Account $account, Carbon $date);
|
|
|
|
public function categoryShowChart(\Category $category, $range, Carbon $start, Carbon $end);
|
|
} |