diff --git a/src/Validator/Validator.php b/src/Validator/Validator.php index 96b41a0..72ea28a 100644 --- a/src/Validator/Validator.php +++ b/src/Validator/Validator.php @@ -72,6 +72,9 @@ class Validator default => $value }; } + if ($value === 'null') { + $value = null; + } $this->formData->{$key} = $value; } }