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