| 1 | <?php |
||
| 19 | final class JWKSetControllerFactory |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var JsonConverterInterface |
||
| 23 | */ |
||
| 24 | private $jsonConverter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * JWKSetControllerFactory constructor. |
||
| 28 | * |
||
| 29 | * @param JsonConverterInterface $jsonConverter |
||
| 30 | */ |
||
| 31 | public function __construct(JsonConverterInterface $jsonConverter) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param JWKSet $jwkset |
||
| 38 | * @param int $maxAge |
||
| 39 | * |
||
| 40 | * @return JWKSetController |
||
| 41 | */ |
||
| 42 | public function create(JWKSet $jwkset, int $maxAge): JWKSetController |
||
| 46 | } |
||
| 47 |