| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 17 | 
| Code Lines | 10 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 25 | protected function configure() | ||
| 26 |     { | ||
| 27 | $this | ||
| 28 |             ->setName('spomky-labs:jose:delete') | ||
| 29 |             ->setDescription('Delete a key or key set.') | ||
| 30 | ->addArgument( | ||
| 31 | 'service', | ||
| 32 | InputArgument::REQUIRED | ||
| 33 | ) | ||
| 34 | ->setHelp(<<<'EOT' | ||
| 35 | The <info>%command.name%</info> command will delete a key or key set. | ||
| 36 | If the service is called, then the key will be created again. | ||
| 37 | |||
| 38 | <info>php %command.full_name%</info> | ||
| 39 | EOT | ||
| 40 | ); | ||
| 41 | } | ||
| 42 | |||
| 65 |