diff --git a/src/Console/Commands/MakeUser.php b/src/Console/Commands/MakeUser.php index 96fe144..a0c4fea 100644 --- a/src/Console/Commands/MakeUser.php +++ b/src/Console/Commands/MakeUser.php @@ -45,7 +45,7 @@ public function handle() $sendReset = $this->confirm('Do you want to send a password reset email?'); while ($custom = $this->ask('Do you have any custom user fields to add? Field=Value (blank continues)', false)) { - list($key, $value) = explode('=', $custom); + [$key, $value] = explode('=', $custom); $this->customFields[$key] = value($value); }