Skip to content

Commit

Permalink
Fix from @evs-xsarus
Browse files Browse the repository at this point in the history
Fix from @evs-xsarus
report.ERROR: Deprecated Functionality: preg_replace(): Passing null to parameter
  • Loading branch information
MrGekko authored and peterjaap committed Aug 10, 2022
1 parent 91c5141 commit 53c7141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Service/CleanNumberString.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function returnStrippedString($vatInput): string
'/[^0-9a-z]+/i'
],
'',
$vatInput
$vatInput ?? ''
);
}
}

0 comments on commit 53c7141

Please sign in to comment.