Various code reshuffelling.

This commit is contained in:
James Cole
2021-03-12 06:20:01 +01:00
parent 97561ab9c9
commit 748d61fb8f
51 changed files with 1874 additions and 1873 deletions

View File

@@ -36,11 +36,6 @@ use Illuminate\Support\Collection;
interface BudgetLimitRepositoryInterface
{
/**
* Destroy all budget limits.
*/
public function destroyAll(): void;
/**
* Tells you which amount has been budgeted (for the given budgets)
* in the selected query. Returns a positive amount as a string.
@@ -54,6 +49,11 @@ interface BudgetLimitRepositoryInterface
*/
public function budgeted(Carbon $start, Carbon $end, TransactionCurrency $currency, ?Collection $budgets = null): string;
/**
* Destroy all budget limits.
*/
public function destroyAll(): void;
/**
* Destroy a budget limit.
*