mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 03:56:42 +00:00
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Limit;
|
|
|
|
|
|
interface LimitRepositoryInterface
|
|
{
|
|
|
|
public function store($data);
|
|
|
|
public function getTJByBudgetAndDateRange(\Budget $budget, \Carbon\Carbon $start, \Carbon\Carbon $end);
|
|
|
|
public function find($limitId);
|
|
}
|