/** * @return JwsAlgorithm[] id => JwsAlgorithm */ public function all() { return $this->bag->all(); }
public function test_remove() { $bag = new ParameterBag(['a' => 1, 'b' => 2]); $bag->remove('a'); $this->assertEquals(['b' => 2], $bag->all()); }