fix: arguments keys

This commit is contained in:
Nuno Maduro
2023-06-19 17:12:50 +01:00
parent 355a2349af
commit cee5b9feb9

View File

@ -44,6 +44,6 @@ trait HandleArguments
unset($arguments[$argument]);
return array_flip($arguments);
return array_values(array_flip($arguments));
}
}