This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Validator/Mapping/Loader/constraint-mapping.yml

42 lines
1.0 KiB
YAML
Raw Normal View History

namespaces:
custom: Symfony\Tests\Component\Validator\Fixtures\
Symfony\Tests\Component\Validator\Fixtures\Entity:
constraints:
# Custom constraint
- Symfony\Tests\Component\Validator\Fixtures\ConstraintA: ~
# Custom constraint with namespaces prefix
- "custom:ConstraintB": ~
2011-06-08 18:56:59 +01:00
properties:
firstName:
# Constraint without value
- NotNull: ~
# 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
# Constraint with options
- Choice: { choices: [A, B], message: Must be one of %choices% }
2011-06-08 18:56:59 +01:00
getters:
lastName:
- NotNull: ~