Is it possible to use Symfony's MapQueryString with validation for an array of integers?
Using this:
```
#[Assert\All(new Assert\Type('integer'))]
```
... I can't get arg[]=1234 to pass successfully.
If I change to Assert\Type('numeric') it "works", but the array contains the numbers as strings.