Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 2 | protected function configure() |
|
28 | { |
||
29 | $this |
||
30 | 2 | ->setName('reset-pass') |
|
31 | 2 | ->setDescription('Resets a user\'s password') |
|
32 | 2 | ->addArgument( |
|
33 | 2 | 'email', |
|
34 | 2 | InputArgument::REQUIRED, |
|
35 | 2 | 'The email of the user' |
|
36 | 2 | )->addArgument( |
|
37 | 2 | 'newPassword', |
|
38 | 2 | InputArgument::REQUIRED, |
|
39 | 2 | 'The email of the user' |
|
40 | ) |
||
41 | ; |
||
42 | 2 | } |
|
43 | |||
60 |