Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
64 | public function createJWKSet(array $values = []) |
||
65 | { |
||
66 | $key_set = new JWKSet(); |
||
67 | if (array_key_exists('keys', $values)) { |
||
68 | foreach ($values['keys'] as $value) { |
||
69 | $key = $this->getJWKManager()->createJWK($value); |
||
70 | $key_set->addKey($key); |
||
71 | } |
||
72 | } |
||
73 | |||
74 | return $key_set; |
||
75 | } |
||
76 | } |
||
77 |