Exemplo n.º 1
0
 /**
  * Generate a "random" alpha-numeric string.
  * 
  * Should not be considered sufficient for cryptography, etc.
  *
  * @param int $length
  * @return string 
  * @static 
  */
 public static function quickRandom($length = 16)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::quickRandom($length);
 }