Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | protected function configure() |
||
39 | { |
||
40 | parent::configure(); |
||
41 | $this |
||
42 | ->setName('keyset:load:jku') |
||
43 | ->setDescription('Loads a key set from an url.') |
||
44 | ->setHelp('This command will try to get a key set from an URL. The distant key set is a JWKSet.') |
||
45 | ->addArgument('url', InputArgument::REQUIRED, 'The URL') |
||
46 | ; |
||
47 | } |
||
48 | |||
59 |