fix: handle other types of generated values
This commit is contained in:
parent
06ab2145ca
commit
549446abdf
1 changed files with 3 additions and 0 deletions
|
|
@ -1544,6 +1544,9 @@ function generateEnvValue(string $command)
|
|||
case 'USER':
|
||||
$generatedValue = Str::random(16);
|
||||
break;
|
||||
default:
|
||||
$generatedValue = Str::random(16);
|
||||
break;
|
||||
}
|
||||
return $generatedValue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue