2014-07-20 18:24:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Firefly\Storage\Limit;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface LimitRepositoryInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function store($data);
|
|
|
|
|
|
|
|
|
|
public function getTJByBudgetAndDateRange(\Budget $budget, \Carbon\Carbon $start, \Carbon\Carbon $end);
|
2014-07-20 20:46:10 +02:00
|
|
|
|
|
|
|
|
public function find($limitId);
|
2014-07-20 18:24:27 +02:00
|
|
|
}
|