Exemplo n.º 1
0
 public function testCanRemoveMultipleValues()
 {
     $array = Arr::remove($this->arrayMulti, ['0.foo', '1.foo']);
     $matcher = $this->arrayMulti;
     unset($matcher[0]['foo']);
     unset($matcher[1]['foo']);
     $this->assertEquals($matcher, $array);
 }