Example #1
0
 /** @test */
 public function it_can_split_a_collection_into_chunks()
 {
     $collection = new Collection([1, 2, 3, 4, 5, 6, 7]);
     $this->assertEquals([[1, 2, 3, 4], [5, 6, 7]], $collection->chunk(4)->toArray());
 }