is_string_value; } public function setIsStringValue(bool $is_string_value): void { $this->is_string_value = $is_string_value; } public function getValueShort(): ?string { if ($this->is_string_value && ($rep = $this->value) && 'contents' === $rep->getName() && 'string' === \gettype($rep->contents)) { return '"'.$rep->contents.'"'; } return null; } }