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