1 | <?php |
||
25 | final class PublicKeyCommand extends AbstractObjectOutputCommand |
||
26 | { |
||
27 | /** |
||
28 | * KeyAnalyzerCommand constructor. |
||
29 | * |
||
30 | * @param JsonConverterInterface $jsonConverter |
||
31 | * @param string|null $name |
||
32 | */ |
||
33 | public function __construct(JsonConverterInterface $jsonConverter, string $name = null) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | protected function configure() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | protected function execute(InputInterface $input, OutputInterface $output) |
||
62 | |||
63 | /** |
||
64 | * @param InputInterface $input |
||
65 | * |
||
66 | * @return JWK |
||
67 | */ |
||
68 | private function getKey(InputInterface $input): JWK |
||
78 | } |
||
79 |