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