Overrides AbstractString::reverse
public function reverse() : static { $str = clone $this; $str->string = strrev($str->string); return $str; }