This commit is contained in:
James Cole 2017-11-12 08:42:25 +01:00
parent f0e195f33b
commit 6c8f631582
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -90,7 +90,7 @@ class BudgetRepository implements BudgetRepositoryInterface
// get account information // get account information
/** @var AccountRepositoryInterface $accountRepository */ /** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class); $accountRepository = app(AccountRepositoryInterface::class);
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH]); $accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
$return = []; $return = [];
/** @var Budget $budget */ /** @var Budget $budget */
foreach ($budgets as $budget) { foreach ($budgets as $budget) {