Removed a method no longer necessary.

This commit is contained in:
James Cole
2016-10-05 16:09:37 +02:00
parent b355c18e0c
commit 5540697dbd
4 changed files with 10 additions and 33 deletions

View File

@@ -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

View File

@@ -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