Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
43 | 9 | public function getDecoder() |
|
44 | { |
||
45 | 9 | $entryTransactionDetailDecoder = new Camt053\Decoder\EntryTransactionDetail(); |
|
46 | 9 | $entryDecoder = new Decoder\Entry($entryTransactionDetailDecoder); |
|
47 | 9 | $recordDecoder = new Decoder\Record($entryDecoder); |
|
48 | 9 | $messageDecoder = new Camt053\Decoder\Message($recordDecoder); |
|
49 | |||
50 | 9 | return new Decoder($messageDecoder, sprintf('/assets/%s.xsd', $this->getMsgId())); |
|
51 | } |
||
52 | } |
||
53 |