@@ -77,12 +77,12 @@ |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (array_key_exists('amount_modifier', $transaction)) { |
| 80 | - $transaction['amount_modifier'] = (string) $transaction['amount_modifier']; |
|
| 80 | + $transaction['amount_modifier'] = (string)$transaction['amount_modifier']; |
|
| 81 | 81 | } |
| 82 | 82 | if (array_key_exists('foreign_amount', $transaction)) { |
| 83 | - $transaction['foreign_amount'] = (string) $transaction['foreign_amount']; |
|
| 83 | + $transaction['foreign_amount'] = (string)$transaction['foreign_amount']; |
|
| 84 | 84 | } |
| 85 | - $amount = (string) $amount; |
|
| 85 | + $amount = (string)$amount; |
|
| 86 | 86 | if ('' === $amount) { |
| 87 | 87 | Log::error('Amount is EMPTY. This will give problems further ahead.', $transaction); |
| 88 | 88 | |