Beispiel #1
0
 public function test_remove()
 {
     $bag = new ParameterBag(['a' => 1, 'b' => 2]);
     $bag->remove('a');
     $this->assertEquals(['b' => 2], $bag->all());
 }