default args

This commit is contained in:
2024-10-09 03:07:56 +02:00
parent a6ba7c4b23
commit b3cffaed35
2 changed files with 6 additions and 2 deletions

View File

@ -108,4 +108,4 @@ $input_args = filter_input_array(INPUT_GET, [
'-V' => ['filter' => FILTER_VALIDATE_BOOLEAN, 'flags' => FILTER_NULL_ON_FAILURE],
'--unprivileged' => ['filter' => FILTER_VALIDATE_BOOLEAN, 'flags' => FILTER_NULL_ON_FAILURE],
'-h' => ['filter' => FILTER_VALIDATE_BOOLEAN, 'flags' => FILTER_NULL_ON_FAILURE],
], false);
], false) ?: $DEFAULT_ARGS;