mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
28 lines
566 B
PHP
28 lines
566 B
PHP
<?php
|
|
/**
|
|
* PiggyBankChartGenerator.php
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace FireflyIII\Generator\Chart\PiggyBank;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Interface PiggyBankChartGeneratorInterface
|
|
*
|
|
* @package FireflyIII\Generator\Chart\PiggyBank
|
|
*/
|
|
interface PiggyBankChartGeneratorInterface
|
|
{
|
|
/**
|
|
* @param Collection $set
|
|
*
|
|
* @return array
|
|
*/
|
|
public function history(Collection $set);
|
|
}
|