Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | protected function configure() |
||
26 | { |
||
27 | $this |
||
28 | ->setName('spomky-labs:jose:regen') |
||
29 | ->setDescription('Generate a new key or key set.') |
||
30 | ->addArgument( |
||
31 | 'service', |
||
32 | InputArgument::REQUIRED |
||
33 | ) |
||
34 | ->setHelp(<<<'EOT' |
||
35 | The <info>%command.name%</info> command will generate a new key or key set. |
||
36 | |||
37 | <info>php %command.full_name%</info> |
||
38 | EOT |
||
39 | ); |
||
40 | } |
||
41 | |||
64 |