Skip to content

Commit

Permalink
[user:create] Remove email default value. (#3726)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolivas authored Jan 22, 2018
1 parent b48099c commit f24306f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Command/User/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ function ($role) use ($systemRoles) {
$email = $input->getOption('email');
if (!$email) {
$email = $this->getIo()->askEmpty(
$this->trans('commands.user.create.questions.email'),
''
$this->trans('commands.user.create.questions.email')
);

$input->setOption('email', $email);
Expand Down

0 comments on commit f24306f

Please sign in to comment.