| Total Complexity | 6 | 
| Total Lines | 48 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 9 | class EditUserCommand extends Command | ||
| 10 | { | ||
| 11 | use AsksForUsers; | ||
| 12 | /** | ||
| 13 | * The name and signature of the console command. | ||
| 14 | * | ||
| 15 | * @var string | ||
| 16 | */ | ||
| 17 |     protected $signature = 'user:edit {id? : The User id} {name? : The User name} {email? : The user email}'; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * The console command description. | ||
| 21 | * | ||
| 22 | * @var string | ||
| 23 | */ | ||
| 24 | protected $description = 'Edit an existing user.'; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * Create a new command instance. | ||
| 28 | * | ||
| 29 | * @return void | ||
| 30 | */ | ||
| 31 | public function __construct() | ||
| 32 |     { | ||
| 33 | parent::__construct(); | ||
| 34 | } | ||
| 35 | |||
| 36 | /** | ||
| 37 | * Execute the console command. | ||
| 38 | * | ||
| 39 | * @return mixed | ||
| 40 | */ | ||
| 41 | public function handle() | ||
| 57 | } | ||
| 58 | } | ||
| 59 |