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