Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | protected function configure() |
||
15 | { |
||
16 | $this->setName('pad:delete') |
||
17 | ->setDescription('Delete a pad') |
||
18 | ->setDefinition( |
||
19 | array( |
||
20 | new InputArgument('padId', InputArgument::REQUIRED, 'The ID of the Pad'), |
||
21 | new InputOption('apikey', null, InputOption::VALUE_REQUIRED, 'The API Key of your Etherpad Instance'), |
||
22 | new InputOption('host', null, InputOption::VALUE_OPTIONAL, 'The HTTP Address of your Etherpad Instance', 'http://localhost:9001') |
||
23 | ) |
||
24 | ); |
||
25 | } |
||
26 | |||
40 |