Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | protected function configure() |
||
11 | { |
||
12 | parent::configure(); |
||
13 | $this |
||
14 | ->setName('add') |
||
15 | ->setDescription('Add a Site') |
||
16 | ->addArgument( |
||
17 | 'name', |
||
18 | InputArgument::REQUIRED, |
||
19 | 'Identifier for your Site' |
||
20 | ) |
||
21 | ->addArgument( |
||
22 | 'path', |
||
23 | InputArgument::REQUIRED, |
||
24 | 'Path to the project/mysite folder.' |
||
25 | ); |
||
26 | } |
||
27 | |||
42 | } |