wiki/content/20201116124823-sequentially_constraint.md

407 B

date id title
20201116 ee2c3e75-2f2a-44c0-b24d-b15ac3fd3bb6 Sequentially Constraint

Description

Validates a set of constraints sequentially.

Syntax

/**
 * @var string
 *
 * @Assert\Sequentially({
 *     @Assert\Type("string"),
 *     @Assert\Length(min="4"),
 *     @Assert\Regex("[a-z]"),
 *     @SomeCustomConstraintWithHeavyExternalCalls(),
 * })
 */
public $someProperty;