Skip to content

Commit 3e9ff07

Browse files
authored
fix: resolve implicit nullable
1 parent 48f4b14 commit 3e9ff07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TaxCode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class TaxCode implements Stringable
1414

1515
public function __construct(
1616
private string $taxCode,
17-
string $originalTaxCode = null,
17+
string|null $originalTaxCode = null,
1818
private array $modifiers = [],
1919
) {
2020
$this->originalTaxCode = $originalTaxCode ?? $this->taxCode;

0 commit comments

Comments
 (0)