Array query parameters containing objects are not correctly validated because the validator requires the objects to be actual objects and not associative arrays.
The parameter value is now correctly casted.
I also needed to improve parameter casting in order to recursively cast the parameter (in case of objects and arrays). It is not perfect but it's better than before. We could improve it if needed in the future.
Fixes #187
Array query parameters containing objects are not correctly validated because the validator requires the objects to be actual objects and not associative arrays.
The parameter value is now correctly casted.
I also needed to improve parameter casting in order to recursively cast the parameter (in case of objects and arrays). It is not perfect but it's better than before. We could improve it if needed in the future.