mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-21 11:48:53 +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);
|
|
}
|