check the user type if it has valid value
All checks were successful
default-pipeline default-pipeline #180

This commit is contained in:
Balázs Vigh 2021-05-08 16:19:49 +02:00
parent 430b32d0c6
commit 1cc3294ee7

View File

@ -27,7 +27,7 @@ class AddUserCommand extends Command
$user->setActive(true); $user->setActive(true);
$user->setCreatedDate(new DateTime()); $user->setCreatedDate(new DateTime());
if ($input->hasArgument('type')) { if ($input->hasArgument('type') && $input->getArgument('type') !== null) {
$user->setType($input->getArgument('type')); $user->setType($input->getArgument('type'));
} }