Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | protected function configure() |
||
16 | { |
||
17 | $this |
||
18 | ->setName('sumocoders:multiuser:create') |
||
19 | ->setDescription('Create a user entity') |
||
20 | ->addArgument( |
||
21 | 'username', |
||
22 | InputArgument::REQUIRED, |
||
23 | 'The username of the user' |
||
24 | ) |
||
25 | ->addArgument( |
||
26 | 'password', |
||
27 | InputArgument::REQUIRED, |
||
28 | 'The password for the user' |
||
29 | ) |
||
30 | ->addArgument( |
||
31 | 'displayName', |
||
32 | InputArgument::REQUIRED, |
||
33 | 'The display name for the user' |
||
34 | ) |
||
35 | ; |
||
36 | } |
||
37 | |||
58 |