Overrides AbstractString::append
public function append(string ...$suffix) : static { $str = clone $this; $str->string .= 1 >= \count($suffix) ? $suffix[0] ?? '' : implode('', $suffix); if (!preg_match('//u', $str->string)) { throw new InvalidArgumentException('Invalid UTF-8 string.'); } return $str; }