| 1 | <?php |
||
| 17 | final class JWKSet implements JWKSetInterface |
||
| 18 | { |
||
| 19 | use BaseJWKSet; |
||
| 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 removeKey($key) |
||
| 60 | } |
||
| 61 |