Exemplo n.º 1
0
 public function testCanPrependValuesToArrays()
 {
     $array = Arr::prepend($this->array, 'foo');
     $matcher = [0 => 'foo', 'foo' => 'bar', 'bis' => 'ter'];
     $this->assertEquals($matcher, $array);
 }