Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function getDecoder(): DecoderInterface |
||
30 | { |
||
31 | $entryTransactionDetailDecoder = new Camt054\Decoder\EntryTransactionDetail(new Decoder\Date()); |
||
32 | $entryDecoder = new Decoder\Entry($entryTransactionDetailDecoder); |
||
33 | $recordDecoder = new Decoder\Record($entryDecoder, new Decoder\Date()); |
||
34 | $messageDecoder = new Camt054\Decoder\V08\Message($recordDecoder, new Decoder\Date()); |
||
35 | |||
36 | return new Decoder($messageDecoder, sprintf('/assets/%s.xsd', $this->getMsgId())); |
||
37 | } |
||
39 |