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