-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
Description
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:
array(0) {
}Am I missing something? Or maybe is my file format not supported?
Reactions are currently unavailable