Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | protected function configure() |
||
14 | { |
||
15 | $this |
||
16 | ->addDefaults() |
||
17 | ->setName('webserver') |
||
18 | ->setDescription('Perform webserver operations with abstraction of the webserver engine.') |
||
19 | ->addArgument('action', InputArgument::REQUIRED, 'Possible actions: reload') |
||
20 | ->setHelp(<<<EOT |
||
21 | Perform webserver operations with abstraction of the webserver engine. |
||
22 | |||
23 | <info>php skylab.phar webserver reload</info> # Reload webserver configuration |
||
24 | |||
25 | EOT |
||
26 | ); |
||
27 | } |
||
28 | |||
54 |