| 1 | <?php |
||
| 21 | final class JWKSetController |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $jwkset; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var int |
||
| 30 | */ |
||
| 31 | private $maxAge; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * JWKSetController constructor. |
||
| 35 | * |
||
| 36 | * @param string $jwkset |
||
| 37 | * @param int $maxAge |
||
| 38 | */ |
||
| 39 | public function __construct(string $jwkset, int $maxAge) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return Response |
||
| 47 | */ |
||
| 48 | public function getAction(): Response |
||
| 59 | } |
||
| 60 |