Beispiel #1
0
 public function testCanRepeatString()
 {
     $string = Str::from('foo')->repeat(3)->obtain();
     $this->assertEquals('foofoofoo', $string);
 }