Exemplo n.º 1
0
 public function testImplodeCollection()
 {
     $collection = new Collection(['one', 'two', 'three', 'four']);
     $this->assertEquals('one,two,three,four', $collection->implode(','));
 }