Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | 2 | public function getDecoder() |
|
43 | { |
||
44 | 2 | $entryTransactionDetailDecoder = new Decoder\EntryTransactionDetail(); |
|
45 | 2 | $entryDecoder = new Decoder\Entry($entryTransactionDetailDecoder); |
|
46 | 2 | $statementDecoder = new Decoder\Statement($entryDecoder); |
|
47 | 2 | $messageDecoder = new Decoder\Message($statementDecoder); |
|
48 | |||
49 | 2 | return new Decoder($messageDecoder, '/assets/camt.053.001.03.xsd'); |
|
50 | } |
||
51 | } |
||
52 |