Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldyrynda authored and StyleCIBot committed Oct 13, 2019
1 parent 41c55e9 commit 6784e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Commands/MakeUser.php
Expand Up @@ -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);
}

Expand Down

0 comments on commit 6784e0f

Please sign in to comment.