Currently, the API of `ValidatorInterface` does not support group sequences. This should be made possible by supporting the following calls: ``` php $validator->validate($object, new GroupSequence(array('first', 'second'))); $validator->validateProperty($object, 'foo', new GroupSequence(array('first', 'second'))); $validator->validatePropertyValue('Class', 'foo', 'bar', new GroupSequence(array('first', 'second'))); $validator->validateValue($object, array($constraint1, $constraint2), new GroupSequence(array('first', 'second'))); ```