Files
firefly-iii/app/Generator/Chart/Bill/BillChartGeneratorInterface.php

41 lines
793 B
PHP
Raw Normal View History

2015-06-27 11:44:18 +02:00
<?php
/**
* BillChartGeneratorInterface.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.
*/
2015-06-27 11:44:18 +02:00
namespace FireflyIII\Generator\Chart\Bill;
use FireflyIII\Models\Bill;
use Illuminate\Support\Collection;
/**
* Interface BillChartGeneratorInterface
2015-06-27 11:44:18 +02:00
*
* @package FireflyIII\Generator\Chart\Bill
*/
interface BillChartGeneratorInterface
2015-06-27 11:44:18 +02:00
{
/**
* @param string $paid
* @param string $unpaid
2015-06-27 11:44:18 +02:00
*
* @return array
*/
2016-02-05 09:25:15 +01:00
public function frontpage(string $paid, string $unpaid);
2015-06-27 11:44:18 +02:00
/**
2015-06-28 10:38:51 +02:00
* @param Bill $bill
* @param Collection $entries
2015-06-27 11:44:18 +02:00
*
* @return array
*/
2015-06-28 10:38:51 +02:00
public function single(Bill $bill, Collection $entries);
2015-06-27 11:44:18 +02:00
2015-06-28 08:24:12 +02:00
}