Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nemiah committed May 30, 2019
1 parent f1980b6 commit 74601b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Fhp/Parser/MT940.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected function parseToArray()

$amount = $trxMatch[4];
$amount = str_replace(',', '.', $amount);
$trx[count($trx) - 1]['amount'] = floatval($amount);
$trx[count($trx) - 1]['amount'] = $amount;

$description = $this->parseDescription($description);
$trx[count($trx) - 1]['description'] = $description;
Expand Down

0 comments on commit 74601b8

Please sign in to comment.