mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
42 lines
738 B
PHP
42 lines
738 B
PHP
<?php
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
/**
|
|
* Interface BudgetInterface
|
|
*
|
|
* @package Firefly\Helper\Controllers
|
|
*/
|
|
interface BudgetInterface
|
|
{
|
|
|
|
/**
|
|
* @param Collection $budgets
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function organizeByDate(Collection $budgets);
|
|
|
|
/**
|
|
* @param $repetitionId
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function organizeRepetition($repetitionId);
|
|
|
|
/**
|
|
* @param \Budget $budget
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function organizeRepetitions(\Budget $budget);
|
|
|
|
/**
|
|
* @param \Budget $budget
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function outsideRepetitions(\Budget $budget);
|
|
|
|
}
|