| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class GiveAdminRole extends Command |
||
| 9 | { |
||
| 10 | protected $signature = 'debug:give-admin-role {email}'; |
||
| 11 | |||
| 12 | protected $description = 'Give admin role to the user (email) given'; |
||
| 13 | |||
| 14 | public function __construct() |
||
| 15 | { |
||
| 16 | parent::__construct(); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function handle() |
||
| 24 | } |
||
| 25 | } |
||
| 26 |