Esempio n. 1
0
 /**
  * Convert the given string to upper-case.
  *
  * @param string $value
  * @return string 
  * @static 
  */
 public static function upper($value)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::upper($value);
 }