Overrides AbstractString::join
public function join(array $strings, ?string $lastGlue = null) : static { $str = clone $this; $tail = null !== $lastGlue && 1 < \count($strings) ? $lastGlue . array_pop($strings) : ''; $str->string = implode($this->string, $strings) . $tail; return $str; }