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 | 8 | public function getDecoder() |
|
43 | { |
||
44 | 8 | $entryTransactionDetailDecoder = new Decoder\EntryTransactionDetail(); |
|
45 | 8 | $entryDecoder = new Decoder\Entry($entryTransactionDetailDecoder); |
|
46 | 8 | $statementDecoder = new Decoder\Statement($entryDecoder); |
|
47 | 8 | $messageDecoder = new Decoder\Message($statementDecoder); |
|
48 | |||
49 | 8 | return new Decoder($messageDecoder, '/assets/camt.053.001.02.xsd'); |
|
50 | } |
||
51 | } |
||
52 |