コード例 #1
0
ファイル: String.php プロジェクト: Viacomino/sutra
 /**
  * Reverses the string.
  *
  * @return String The string reversed.
  */
 public function reverse()
 {
     return new static(static::$helper->reverse($this->string));
 }