static::MAX_LENGTH) { throw new InvalidArgumentException("Email '$email' must be less than " . static::MAX_LENGTH . ' chars'); } $this->email = $email; } /** * Return the email from the value object * * @return string */ public function getValue() { return $this->email; } }