Move method to correct repository.

This commit is contained in:
James Cole
2019-08-30 08:03:13 +02:00
parent 9fad13c788
commit 4a3e1a9604
5 changed files with 47 additions and 47 deletions

View File

@@ -209,29 +209,6 @@ class BudgetRepository implements BudgetRepositoryInterface
/**
* Returns all available budget objects.
*
* @param Carbon|null $start
* @param Carbon|null $end
*
* @return Collection
*
*/
public function getAvailableBudgetsByDate(?Carbon $start, ?Carbon $end): Collection
{
$query = $this->user->availableBudgets();
if (null !== $start) {
$query->where('start_date', '>=', $start->format('Y-m-d H:i:s'));
}
if (null !== $end) {
$query->where('end_date', '<=', $end->format('Y-m-d H:i:s'));
}
return $query->get();
}
/**
* @param Budget $budget
* @param Carbon $start