| Total Complexity | 3 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class TaxNumberFormatter implements Formatter |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | public string $key_number = 'tax_number'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | public string $key_country = 'country'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Format the Tax Number. |
||
| 24 | * |
||
| 25 | * @param Collection $items |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | 8 | public function format(Collection $items): string |
|
| 59 |