1 | <?php |
||
17 | final class JWKSetController |
||
18 | { |
||
19 | /** |
||
20 | * @var \Jose\Object\JWKSetInterface |
||
21 | */ |
||
22 | private $jwkset; |
||
23 | |||
24 | /** |
||
25 | * JWKSetController constructor. |
||
26 | * |
||
27 | * @param \Jose\Object\JWKSetInterface $jwkset |
||
28 | */ |
||
29 | public function __construct(JWKSetInterface $jwkset) |
||
33 | |||
34 | /** |
||
35 | * @param string $_format |
||
36 | * |
||
37 | * @return \Symfony\Component\HttpFoundation\Response |
||
38 | */ |
||
39 | public function getAction($_format) |
||
51 | } |
||
52 |