Hello,
I'm testing this parser on a sta file from ING (Poland) using this code:
<?php
require 'vendor/autoload.php';
$mt940file = __DIR__ . '/test.sta';
$parser = new \Kingsquare\Parser\Banking\Mt940();
$engine = new \Kingsquare\Parser\Banking\Mt940\Engine\Ing();
$parsedStatements = $parser->parse(file_get_contents($mt940file), $engine);
var_dump($parsedStatements);
but all I get is:
Am I missing something? Or maybe is my file format not supported?
Hello,
I'm testing this parser on a sta file from ING (Poland) using this code:
but all I get is:
Am I missing something? Or maybe is my file format not supported?