Overrides AbstractString::title
public function title(bool $allWords = false) : static { $str = clone $this; $str->string = $allWords ? ucwords($str->string) : ucfirst($str->string); return $str; }