ClassMetadata
class ClassMetadata extends GenericMetadata implements ClassMetadataInterface
Default implementation of {@link ClassMetadataInterface}.
This class supports serialization and cloning.
Properties
Constraint[] | $constraints | from GenericMetadata | |
array | $constraintsByGroup | from GenericMetadata | |
int | $cascadingStrategy | The strategy for cascading objects. | from GenericMetadata |
int | $traversalStrategy | The strategy for traversing traversable objects. | |
string | $name | ||
string | $defaultGroup | ||
MemberMetadata[][] | $members | ||
PropertyMetadata[] | $properties | ||
GetterMetadata[] | $getters | ||
array | $groupSequence | ||
bool | $groupSequenceProvider |
Methods
Returns the names of the properties that should be serialized.
Returns all constraints for a given validation group.
Class nodes are never cascaded.
Returns the strategy for traversing traversable objects.
No description
Returns the name of the backing PHP class.
Returns the name of the default group for this class.
Adds a constraint to the given property.
No description
Adds a constraint to the getter of the given property.
Adds a constraint to the getter of the given property.
No description
No description
Merges the constraints of the given metadata into this object.
Check if there's any metadata attached to the given named property.
Returns all metadata instances for the given named property.
Returns the names of all constrained properties.
Sets the default group sequence for this class.
Returns whether the "Default" group is overridden by a group sequence.
Returns the group sequence that overrides the "Default" group for this class.
Returns a ReflectionClass instance for this class.
Sets whether a group sequence provider should be used.
Returns whether the "Default" group is overridden by a dynamic group sequence obtained by the validated objects.
Details
$this
addConstraint(Constraint $constraint)
Adds a constraint.
If the constraint {@link Valid} is added, the cascading strategy will be changed to {@link CascadingStrategy::CASCADE}. Depending on the $traverse property of that constraint, the traversal strategy will be set to one of the following:
- {@link TraversalStrategy::IMPLICIT} if $traverse is enabled
- {@link TraversalStrategy::NONE} if $traverse is disabled
string
getDefaultGroup()
Returns the name of the default group for this class.
For each class, the group "Default" is an alias for the group
"
If a class defines a group sequence, validating the class in "Default"
will validate the group sequence. The constraints assigned to "Default"
can still be validated by validating the class in "
$this
addPropertyConstraint(string $property, Constraint $constraint)
Adds a constraint to the given property.
$this
addGetterConstraint(string $property, Constraint $constraint)
Adds a constraint to the getter of the given property.
The name of the getter is assumed to be the name of the property with an uppercased first letter and either the prefix "get" or "is".
$this
addGetterMethodConstraint(string $property, string $method, Constraint $constraint)
Adds a constraint to the getter of the given property.
mergeConstraints(ClassMetadata $source)
Merges the constraints of the given metadata into this object.
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.
If your implementation does not support properties, simply throw an exception in this method (for example a BadMethodCallException).
$this
setGroupSequence(string[]|GroupSequence $groupSequence)
Sets the default group sequence for this class.
bool
hasGroupSequence()
Returns whether the "Default" group is overridden by a group sequence.
If it is, you can access the group sequence with {@link getGroupSequence()}.
GroupSequence|null
getGroupSequence()
Returns the group sequence that overrides the "Default" group for this class.
bool
isGroupSequenceProvider()
Returns whether the "Default" group is overridden by a dynamic group sequence obtained by the validated objects.
If this method returns true, the class must implement {@link \Symfony\Component\Validator\GroupSequenceProviderInterface}. This interface will be used to obtain the group sequence when an object of this class is validated.