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