You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Commands/CliUserCreateCommand.php
+28-13
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class CliUserCreateCommand extends Command
33
33
*
34
34
* @var string
35
35
*/
36
-
protected$signature = 'cliuser:create {--show-password : Show letters in password field}';
36
+
protected$signature = 'cliuser:create {name?} {email?} {--random-password : Create the user with a random password} {--show-password : Show letters in password field}';
37
37
38
38
/**
39
39
* The console command description.
@@ -94,20 +94,26 @@ public function handle()
94
94
$fullname = $this->getFullname();
95
95
96
96
$email = $this->getEmail();
97
-
98
-
if ($this->confirm('Do you want to set password?')) {
0 commit comments