Example #1
0
 /**
  * Repeats a string for a specified number of times and returns the resulting string.
  *
  * For instance, the string of "a" repeated three times would result in "aaa".
  *
  * @param  int $times The number of times for the string to be repeated.
  *
  * @return CUStringObject The resulting string.
  */
 public function repeat($times)
 {
     return CUString::repeat($this, $times);
 }