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