Object of class quarxConnect\Entity\IO\Text could not be converted to string
Fatal error: Uncaught Error: Object of class quarxConnect\Entity\IO\Text could not be converted to string in qc/qcEntity/src/IO/Text.php:646
$entityData .= wordwrap ($$this->writeToString ($entityProperty), 75, "\r\n ", true) . "\r\n";
needs to be
$entityData .= wordwrap ($this->writeToString ($entityProperty), 75, "\r\n ", true) . "\r\n";
https://gitlab.quarxconnect.de/quarxconnect.de/qcEntity/-/blob/main/src/IO/Text.php#L646