示例#1
0
 public function testCanAppendValuesToArrays()
 {
     $array = Arr::append($this->array, 'foo');
     $matcher = ['foo' => 'bar', 'bis' => 'ter', 0 => 'foo'];
     $this->assertEquals($matcher, $array);
 }