Just wanted to know if this kind of assert exist in symfony (If not I will create it for my project).
Like I have an assert
#[AssertArrayRegex('/[0-9]{2}/')]
public array $variables = [];
This array would be validated
$array = [
'12',
'13'
]
But not this one
$array = [
'12',
'1'
]
Allconstraint might be able to this: symfony.com/doc/current/reference/constraints/All.html