Exemplo n.º 1
0
 /**
  * Cap a string with a single instance of a given value.
  *
  * @param string $value
  * @param string $cap
  * @return string 
  * @static 
  */
 public static function finish($value, $cap)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::finish($value, $cap);
 }