mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Removed a method no longer necessary.
This commit is contained in:
@@ -227,18 +227,6 @@ class AccountRepository implements AccountRepositoryInterface
|
||||
return $first;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all the accounts by ID, for a given set.
|
||||
*
|
||||
* @param array $ids
|
||||
*
|
||||
* @return \Illuminate\Support\Collection
|
||||
*/
|
||||
public function get(array $ids): Collection
|
||||
{
|
||||
return $this->user->accounts()->whereIn('id', $ids)->get(['accounts.*']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param TransactionJournal $journal
|
||||
* @param Account $account
|
||||
|
@@ -79,15 +79,6 @@ interface AccountRepositoryInterface
|
||||
*/
|
||||
public function firstUseDate(Account $account): Carbon;
|
||||
|
||||
/**
|
||||
* Gets all the accounts by ID, for a given set.
|
||||
*
|
||||
* @param array $ids
|
||||
*
|
||||
* @return \Illuminate\Support\Collection
|
||||
*/
|
||||
public function get(array $ids): Collection;
|
||||
|
||||
/**
|
||||
* @param TransactionJournal $journal
|
||||
* @param Account $account
|
||||
|
Reference in New Issue
Block a user