コード例 #1
0
ファイル: String.php プロジェクト: Viacomino/sutra
 /**
  * Convert the beginning of each word to uppercase.
  *
  * @return String The beginning of each word uppcased.
  */
 public function wordsToUpper()
 {
     return new static(static::$helper->title($this->string));
 }