check the user type if it has valid value
All checks were successful
default-pipeline default-pipeline #180
All checks were successful
default-pipeline default-pipeline #180
This commit is contained in:
parent
430b32d0c6
commit
1cc3294ee7
@ -27,7 +27,7 @@ class AddUserCommand extends Command
|
||||
$user->setActive(true);
|
||||
$user->setCreatedDate(new DateTime());
|
||||
|
||||
if ($input->hasArgument('type')) {
|
||||
if ($input->hasArgument('type') && $input->getArgument('type') !== null) {
|
||||
$user->setType($input->getArgument('type'));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user