Clean up code.

This commit is contained in:
James Cole
2021-06-12 08:40:35 +02:00
parent 5854dff37e
commit 10597e3bef
4 changed files with 48 additions and 7 deletions

View File

@@ -398,9 +398,9 @@ class TransactionGroupRepository implements TransactionGroupRepositoryInterface
$array['categories'] = $journal->categories->toArray();
$array['budgets'] = $journal->budgets->toArray();
$array['notes'] = $journal->notes->toArray();
$array['locations'] = []; // todo
$array['locations'] = [];
$array['attachments'] = $journal->attachments->toArray();
$array['links'] = []; // todo
$array['links'] = [];
$array['piggy_bank_events'] = $journal->piggyBankEvents->toArray();
/** @var Transaction $transaction */