Esempio n. 1
0
 public function testPrependCollection()
 {
     $collection = new Collection(['two', 'three', 'four']);
     $collection->prepend('one');
     $this->assertEquals(['one', 'two', 'three', 'four'], $collection->all()->toArray());
 }