Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | protected function configure() |
||
18 | { |
||
19 | $this |
||
20 | ->addDefaults() |
||
21 | ->setName('permissions') |
||
22 | ->setDescription('Set the permissions of a Skylab project') |
||
23 | ->addArgument('name', InputArgument::REQUIRED, 'The name of the project') |
||
24 | ->setHelp(<<<EOT |
||
25 | The <info>permissions</info> command will fix the permissions of a project. |
||
26 | |||
27 | <info>php skylab.phar permissions testproject</info> |
||
28 | |||
29 | EOT |
||
30 | ); |
||
31 | } |
||
32 | |||
52 |