interface PropertyMetadataInterface implementsMetadataInterface

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.

Methods

int
getCascadingStrategy()

Returns the strategy for cascading objects.

int
getTraversalStrategy()

Returns the strategy for traversing traversable objects.

array
getConstraints()

Returns all constraints of this element.

array
findConstraints(string$group)

Returns all constraints for a given validation group.

string
getPropertyName()

Returns the name of the property.

mixed
getPropertyValue(mixed$containingValue)

Extracts the value of the property from the given container.

Details

int getCascadingStrategy()

Returns the strategy for cascading objects.

Return Value

int

See also

CascadingStrategy

int getTraversalStrategy()

Returns the strategy for traversing traversable objects.

Return Value

int

See also

TraversalStrategy

array getConstraints()

Returns all constraints of this element.

Return Value

array

array findConstraints(string$group)

Returns all constraints for a given validation group.

Parameters

string $group The validation group

Return Value

array

string getPropertyName()

Returns the name of the property.

Return Value

string

mixed getPropertyValue(mixed$containingValue)

Extracts the value of the property from the given container.

Parameters

mixed $containingValue

Return Value

mixed