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