mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 17:31:09 -06:00
21 lines
347 B
PHP
21 lines
347 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Generator\Chart\PiggyBank;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface PiggyBankChartGenerator
|
|
*
|
|
* @package FireflyIII\Generator\Chart\PiggyBank
|
|
*/
|
|
interface PiggyBankChartGenerator
|
|
{
|
|
/**
|
|
* @param Collection $set
|
|
*
|
|
* @return array
|
|
*/
|
|
public function history(Collection $set);
|
|
}
|