예제 #1
0
 /**
  * Get the plural form of an English word.
  *
  * @param string $value
  * @param int $count
  * @return string 
  * @static 
  */
 public static function plural($value, $count = 2)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::plural($value, $count);
 }