Пример #1
0
 /**
  * Limit the number of characters in a string.
  *
  * @param string $value
  * @param int $limit
  * @param string $end
  * @return string 
  * @static 
  */
 public static function limit($value, $limit = 100, $end = '...')
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::limit($value, $limit, $end);
 }