1 | <?php |
||
20 | class JWKSetManager implements JWKSetManagerInterface |
||
21 | { |
||
22 | use HasJWKManager; |
||
23 | |||
24 | /** |
||
25 | * @var \Jose\Finder\JWKSetFinderInterface[] |
||
26 | */ |
||
27 | private $finders = []; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function addJWKSetFinder(JWKSetFinderInterface $finder) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function findJWKSet(array $header) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function createJWKSet(array $values = []) |
||
67 | } |
||
68 |