From d91c4be04d610bc371ea00a107453497822d30b7 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Thu, 20 Feb 2020 18:43:53 +0100 Subject: [PATCH] add warn on send_mail_password --- lib/Alchemy/Phrasea/Command/User/UserCreateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Alchemy/Phrasea/Command/User/UserCreateCommand.php b/lib/Alchemy/Phrasea/Command/User/UserCreateCommand.php index 510e9f458f..9eb160de2f 100644 --- a/lib/Alchemy/Phrasea/Command/User/UserCreateCommand.php +++ b/lib/Alchemy/Phrasea/Command/User/UserCreateCommand.php @@ -39,7 +39,7 @@ class UserCreateCommand extends Command ->addOption('user_mail', null, InputOption::VALUE_OPTIONAL, 'The desired mail for created user.') ->addOption('user_password', null, InputOption::VALUE_OPTIONAL, 'The desired password') ->addOption('send_mail_confirm', null, InputOption::VALUE_NONE, 'Send an email to user, for validate email.') - ->addOption('send_mail_password', null, InputOption::VALUE_NONE, 'Send an email to user, for define password') + ->addOption('send_mail_password', null, InputOption::VALUE_NONE, 'Send an email to user, for password definition, work only if user_password is not define' ') ->addOption('model_number', null, InputOption::VALUE_OPTIONAL, 'Id of model') ->addOption('user_gender', null, InputOption::VALUE_OPTIONAL, 'The gender for created user.') ->addOption('user_firstname', null, InputOption::VALUE_OPTIONAL, 'The first name for created user.')