| 1 | <?php |
||
| 18 | final class JWKFinderManager implements JWKFinderManagerInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var \Jose\Finder\JWKFinderInterface[] |
||
| 22 | */ |
||
| 23 | private $finders = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function addJWKFinder(JWKFinderInterface $finder) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function findJWK(array $header) |
||
| 51 | } |
||
| 52 |