mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
20 lines
346 B
PHP
20 lines
346 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);
|
|
} |