Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 17 | public function __construct( |
|
17 | public ?string $tax_number = null, |
||
18 | public ?string $country = null |
||
19 | ) { |
||
20 | 17 | $filteredTaxNumber = preg_replace('/[^\d\w]/', '', (string) $this->tax_number); |
|
21 | |||
22 | 17 | $this->tax_number = Str::upper($filteredTaxNumber); |
|
23 | 17 | $this->country = Str::upper($this->country); |
|
24 | } |
||
52 |