Files
firefly-iii/app/Generator/Chart/PiggyBank/PiggyBankChartGeneratorInterface.php

32 lines
683 B
PHP
Raw Normal View History

<?php
/**
* PiggyBankChartGeneratorInterface.php
2016-04-01 16:44:46 +02:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types = 1);
namespace FireflyIII\Generator\Chart\PiggyBank;
use Illuminate\Support\Collection;
/**
* Interface PiggyBankChartGeneratorInterface
*
* @package FireflyIII\Generator\Chart\PiggyBank
*/
interface PiggyBankChartGeneratorInterface
{
/**
* @param Collection $set
*
* @return array
*/
2016-02-18 07:21:48 +01:00
public function history(Collection $set): array;
}