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