interface PropertyMetadataInterface implements MetadataInterface
Stores all metadata needed for validating the value of a class property.
Most importantly, the metadata stores the constraints against which the property's value should be validated.
Additionally, the metadata stores whether objects stored in the property should be validated against their class' metadata and whether traversable objects should be traversed or not.
int | getCascadingStrategy() Returns the strategy for cascading objects. | from MetadataInterface |
int | getTraversalStrategy() Returns the strategy for traversing traversable objects. | from MetadataInterface |
Constraint[] | getConstraints() Returns all constraints of this element. | from MetadataInterface |
Constraint[] | findConstraints(string $group) Returns all constraints for a given validation group. | from MetadataInterface |
string | getPropertyName() Returns the name of the property. | |
mixed | getPropertyValue(mixed $containingValue) Extracts the value of the property from the given container. |
Returns the strategy for cascading objects.
int | The cascading strategy |
CascadingStrategy |
Returns the strategy for traversing traversable objects.
int | The traversal strategy |
TraversalStrategy |
Returns all constraints of this element.
Constraint[] | A list of Constraint instances |
Returns all constraints for a given validation group.
string | $group | The validation group |
Constraint[] | A list of constraint instances |
Returns the name of the property.
string | The property name |
Extracts the value of the property from the given container.
mixed | $containingValue | The container to extract the property value from |
mixed | The value of the property |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Validator/Mapping/PropertyMetadataInterface.html