| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 13 | protected function configure() { |
||
| 14 | $this |
||
| 15 | ->setName('auth:role:add') |
||
| 16 | ->setDescription('Create a single role into the database') |
||
| 17 | ->addArgument('code', InputArgument::REQUIRED, 'Enter the code of the role?') |
||
| 18 | ->addArgument('name', InputArgument::REQUIRED, 'Enter the name of the role?'); |
||
| 19 | } |
||
| 20 | |||
| 45 | } |