mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 19:47:48 +00:00
12 lines
225 B
PHP
12 lines
225 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Firefly\Storage\Limit;
|
||
|
|
||
|
|
||
|
interface LimitRepositoryInterface
|
||
|
{
|
||
|
|
||
|
public function store($data);
|
||
|
|
||
|
public function getTJByBudgetAndDateRange(\Budget $budget, \Carbon\Carbon $start, \Carbon\Carbon $end);
|
||
|
}
|