mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
31 lines
546 B
PHP
31 lines
546 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Generator\Chart\Report;
|
||
|
|
||
|
use Illuminate\Support\Collection;
|
||
|
|
||
|
/**
|
||
|
* Interface ReportChartGenerator
|
||
|
*
|
||
|
* @package FireflyIII\Generator\Chart\Report
|
||
|
*/
|
||
|
interface ReportChartGenerator
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @param Collection $entries
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function yearInOut(Collection $entries);
|
||
|
|
||
|
/**
|
||
|
* @param string $income
|
||
|
* @param string $expense
|
||
|
* @param int $count
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function yearInOutSummarized($income, $expense, $count);
|
||
|
|
||
|
}
|