| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 60 | public function getExpectedProperty(): array |
||
| 61 | { |
||
| 62 | return [ |
||
| 63 | // key => mandatory, |
||
| 64 | 'accountFrom' => true, |
||
| 65 | 'currency' => true, |
||
| 66 | 'amount' => true, |
||
| 67 | 'accountTo' => true, |
||
| 68 | 'bankCode' => true, |
||
| 69 | 'ks' => false, |
||
| 70 | 'vs' => false, |
||
| 71 | 'ss' => false, |
||
| 72 | 'date' => true, |
||
| 73 | 'messageForRecipient' => false, |
||
| 74 | 'comment' => false, |
||
| 75 | 'paymentReason' => false, |
||
| 76 | 'paymentType' => false, |
||
| 77 | ]; |
||
| 78 | } |
||
| 79 | |||
| 87 |