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