We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c55e9 commit 6784e0fCopy full SHA for 6784e0f
src/Console/Commands/MakeUser.php
@@ -45,7 +45,7 @@ public function handle()
45
$sendReset = $this->confirm('Do you want to send a password reset email?');
46
47
while ($custom = $this->ask('Do you have any custom user fields to add? Field=Value (blank continues)', false)) {
48
- list($key, $value) = explode('=', $custom);
+ [$key, $value] = explode('=', $custom);
49
$this->customFields[$key] = value($value);
50
}
51
0 commit comments