I'm just wondering how I can create a validator for a request where the body root is an array. It seems like if the rules are '*.' it also applies to the query parameters.
@binarymelon and the request comes from an external server or? Sending data without a key is a really bad idea in general so if it's you own code, you should just give it a key
@binarymelon as far as I know only by creating a manual Validator. It's the same as putting mixed stuff into $_GET or $_POST and try to get only numeric keys out for validation. If you can give a working example, I might be able to give a better answer