Browse Source

Add missing semicolon (oops)

pull/26/head
James Cole 4 years ago
parent
commit
2b0a2d6e22
No known key found for this signature in database GPG Key ID: BDE6667570EADBD5
  1. 2
      app/Services/Nordigen/Conversion/Routine/GenerateTransactions.php

2
app/Services/Nordigen/Conversion/Routine/GenerateTransactions.php

@ -357,7 +357,7 @@ class GenerateTransactions
// destination is a Nordigen account (has to be!)
$transaction['destination_id'] = (int) $this->accounts[$accountId];
app('log')->debug(sprintf('Destination ID is now #%d, which should be a Firefly III asset account.', $transaction['destination_id']))
app('log')->debug(sprintf('Destination ID is now #%d, which should be a Firefly III asset account.', $transaction['destination_id']));
// append source iban and number (if present)
$transaction = $this->appendAccountFields($transaction, $entry, 'source');

Loading…
Cancel
Save