normalized = $normalized; } public function value(): string { return $this->normalized; } public function equals(self $other): bool { return $this->normalized === $other->normalized; } public function __toString(): string { return $this->normalized; } }