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