1 | <?php |
||
17 | final class JWKSet extends BaseJWKSet implements JWKSetInterface |
||
18 | { |
||
19 | use JWKSetPEM; |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $keys = []; |
||
25 | |||
26 | public function __construct(array $keys = []) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getKeys() |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function addKey(JWKInterface $key) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function prependKey(JWKInterface $key) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function removeKey($key) |
||
68 | } |
||
69 |