| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function description(): string |
||
| 17 | { |
||
| 18 | return match($this) { |
||
| 19 | self::VAT => 'VAT ID', |
||
| 20 | self::PASSPORT => 'Passport', |
||
| 21 | self::NATIONAL_ID => 'National ID issued by country of residence', |
||
| 22 | self::RESIDENCE_CERTIFICATE => 'Residence certificate', |
||
| 23 | self::OTHER_DOCUMENT => 'Other supporting document', |
||
| 24 | self::UNREGISTERED => 'Unregistered', |
||
| 25 | }; |
||
| 27 | } |