From 6784e0fa8612e972dfc5d1c931e000f3d7a8389b Mon Sep 17 00:00:00 2001 From: Michael Dyrynda Date: Sun, 13 Oct 2019 23:21:10 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Console/Commands/MakeUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }