| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | protected function configure() |
||
| 12 | { |
||
| 13 | parent::configure(); |
||
| 14 | |||
| 15 | $this |
||
| 16 | ->setDescription('Promotes a user by adding a role') |
||
| 17 | ->setHelp(<<<'EOT' |
||
| 18 | The <info>kuma:user:promote</info> command promotes a user by adding a role |
||
| 19 | |||
| 20 | <info>php %command.full_name% matthieu ROLE_CUSTOM</info> |
||
| 21 | <info>php %command.full_name% --super matthieu</info> |
||
| 22 | EOT |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | |||
| 53 |