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