| 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 |
||
| 45 | 1 | public function getDecoder(): DecoderInterface |
|
| 46 | { |
||
| 47 | 1 | $entryTransactionDetailDecoder = new Camt052\Decoder\EntryTransactionDetail(new Decoder\Date()); |
|
| 48 | 1 | $entryDecoder = new Decoder\Entry($entryTransactionDetailDecoder); |
|
| 49 | 1 | $recordDecoder = new Decoder\Record($entryDecoder, new Decoder\Date()); |
|
| 50 | 1 | $messageDecoder = new Camt052\Decoder\V06\Message($recordDecoder, new Decoder\Date()); |
|
| 51 | |||
| 52 | 1 | return new Decoder($messageDecoder, sprintf('/assets/%s.xsd', $this->getMsgId())); |
|
| 53 | } |
||
| 55 |