12345678910111213141516171819202122232425262728293031323334353637 |
- Symfony\Tests\Component\Validator\Fixtures\Entity:
- constraints:
- # Constraint without value
- - NotNull: ~
- # Custom constraint
- - Symfony\Tests\Component\Validator\Fixtures\ConstraintA: ~
- # Constraint with single value
- - Min: 3
- # Constraint with multiple values
- - Choice: [A, B]
- # Constraint with child constraints
- - All:
- - NotNull: ~
- - Min: 3
- # Option with child constraints
- - All:
- constraints:
- - NotNull: ~
- - Min: 3
- # Value with child constraints
- - Collection:
- fields:
- foo:
- - NotNull: ~
- - Min: 3
- bar:
- - Min: 5
-
- properties:
- firstName:
- # Constraint with options
- - Choice: { choices: [A, B], message: Must be one of %choices% }
-
- getters:
- lastName:
- - NotNull: ~
-
|