diff --git a/app/ValueObjects/EmailAddress.php b/app/ValueObjects/EmailAddress.php new file mode 100644 index 0000000..6952ae9 --- /dev/null +++ b/app/ValueObjects/EmailAddress.php @@ -0,0 +1,18 @@ +normalized = $email; + } + + public function __toString(): string + { + return $this->normalized; + } +}