@@ -165,7 +165,7 @@ |
||
| 165 | 165 | protected function innerXML(\SimpleXMLElement $node) |
| 166 | 166 | { |
| 167 | 167 | $content = ""; |
| 168 | - foreach($node->children() as $child) { |
|
| 168 | + foreach ($node->children() as $child) { |
|
| 169 | 169 | $content .= $child->asXML(); |
| 170 | 170 | } |
| 171 | 171 | return $content; |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | { |
| 62 | 62 | list($sourceAmount, $sourceCurrency) = explode(' ', (string)$statement['amount']); |
| 63 | 63 | list($amount, $currency) = explode(' ', (string)$statement['cardamount']); |
| 64 | - list($balance, ) = explode(' ', (string)$statement['rest']); |
|
| 64 | + list($balance,) = explode(' ', (string)$statement['rest']); |
|
| 65 | 65 | $transactionDate = \DateTime::createFromFormat( |
| 66 | 66 | 'Y-m-d H:i:s', |
| 67 | 67 | sprintf('%s %s', (string)$statement['trandate'], (string)$statement['trantime']), |