use Symfony\Component\Validator\Constraints\Sequentially;
use Symfony\Component\Validator\Constraints\SequentiallyValidator;
use Symfony\Component\Validator\Constraints\Type;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
use Symfony\Component\Validator\Validation;
class SequentiallyValidatorTest extends ConstraintValidatorTestCase
{ protected function createValidator(): SequentiallyValidator
{ return new SequentiallyValidator();
} public function testWalkThroughConstraints() { $constraints =
[ new Type('number'
),
new Range(['min' => 4
]),
];
$value = 6;