| 1 | <?php |
||
| 22 | final class JWKSetControllerFactory |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var JsonConverterInterface |
||
| 26 | */ |
||
| 27 | private $jsonConverter; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * JWKSetControllerFactory constructor. |
||
| 31 | * |
||
| 32 | * @param JsonConverterInterface $jsonConverter |
||
| 33 | */ |
||
| 34 | public function __construct(JsonConverterInterface $jsonConverter) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param JWKSet $jwkset |
||
| 41 | * @param int $maxAge |
||
| 42 | * |
||
| 43 | * @return JWKSetController |
||
| 44 | */ |
||
| 45 | public function create(JWKSet $jwkset, int $maxAge): JWKSetController |
||
| 49 | } |
||
| 50 |