Test Setup Failed
Pull Request — main (#1)
by
unknown
13:13
created
src/OFX.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         $agencyNumber = $xml->BANKACCTFROM->BRANCHID ?? 'N/A';
128 128
         $routingNumber = $xml->BANKACCTFROM->BANKID ?? 'N/A';
129 129
         $balance = $xml->LEDGERBAL->BALAMT ?? 'N/A';
130
-        $balanceDate =  (null !== $xml->LEDGERBAL->DTASOF) ? self::parseDate($xml->LEDGERBAL->DTASOF) : new DateTime();
130
+        $balanceDate = (null !== $xml->LEDGERBAL->DTASOF) ? self::parseDate($xml->LEDGERBAL->DTASOF) : new DateTime();
131 131
         $statement = self::parseStatement($xml);
132 132
         return new BankAccount(
133 133
             $accountNumber,
@@ -215,8 +215,8 @@  discard block
 block discarded – undo
215 215
         $accounts = [];
216 216
         foreach ($xml->ACCTINFO as $account) {
217 217
             $accounts[] = new AccountInfo(
218
-                (string)$account->DESC,
219
-                (string)$account->ACCTID
218
+                (string) $account->DESC,
219
+                (string) $account->ACCTID
220 220
             );
221 221
         }
222 222
 
Please login to merge, or discard this patch.