예제 #1
0
파일: ArrTest.php 프로젝트: laradic/support
 public function testCanCreateFromRepeat()
 {
     $repeat = Arr::repeat('foo', 3);
     $this->assertEquals(['foo', 'foo', 'foo'], $repeat);
 }