From 1f1a5cb82727554c1c4a66dd0ff0fa88a98fd568 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sat, 14 Feb 2026 21:57:15 +0200 Subject: [PATCH] email address value object skeleton --- app/ValueObjects/EmailAddress.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/ValueObjects/EmailAddress.php 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; + } +}