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