PropertyMetadataContainerInterface deprecated

interface PropertyMetadataContainerInterface

deprecated

since version 2.5, to be removed in 3.0. Use {@link Mapping\ClassMetadataInterface} instead.

A container for {@link PropertyMetadataInterface} instances.

Methods

bool hasPropertyMetadata(string $property)

Check if there's any metadata attached to the given named property.

PropertyMetadataInterface[] getPropertyMetadata(string $property)

Returns all metadata instances for the given named property.

Details

bool hasPropertyMetadata(string $property)

Check if there's any metadata attached to the given named property.

Parameters

string $property The property name.

Return Value

bool

PropertyMetadataInterface[] getPropertyMetadata(string $property)

Returns all metadata instances for the given named property.

If your implementation does not support properties, simply throw an exception in this method (for example a BadMethodCallException).

Parameters

string $property The property name.

Return Value

PropertyMetadataInterface[] A list of metadata instances. Empty if no metadata exists for the property.
doc_Symfony
2016-10-28 06:27:54
Comments
Leave a Comment

Please login to continue.